diff --git a/_requirements_/specification.pdf b/_requirements_/specification.pdf new file mode 100644 index 0000000..4e2d60c Binary files /dev/null and b/_requirements_/specification.pdf differ diff --git a/_requirements_/specification.py b/_requirements_/specification.py new file mode 100644 index 0000000..7888279 --- /dev/null +++ b/_requirements_/specification.py @@ -0,0 +1,261 @@ +def specification(req_spec): + req_spec.add_title("Title") + + # + # Section + # + sec_uuid = req_spec.add( + itemtype="SEC", + id=1, + heading="Message Object", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=1, + heading="Status", + description="The Status shall hold some general information (in most cases it is used by the responder). Examples: Okay, Service or Data unknown, Operation not permitted, Authentification required, \\ldots", + reason="Give the possibility to transfer additional status information (e.g. to explain negative responses).", + fitcriterion="A Status is part of the Message Object and it is holding the Status information.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=2, + heading="Service-ID", + description="The Service-ID shall hold information about the type of the request / corresponding response. Examples: read request, write request, read response, write response, \\ldots", + reason="Give the requestor the possibility to use different types (Services) for a transfer. ", + fitcriterion="A Service-ID is part of the Message Object and it is holding the Service-ID information.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=3, + heading="Data-ID", + description="The Data-ID shall hold information to differtiate the data for a specific Service.", + reason="Give the possibility to transfer different information for each Service. ", + fitcriterion="A Data-ID is part of the Message Object and it is holding the Data-ID information.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=4, + heading="Data", + description="The Data shall hold the data to be transfered. For the most requests not data is transmitted.", + reason="Give the possibility to transfer Data. ", + fitcriterion="Data is part of the Message Object and it is holding the Data information.", + ) + # + # Section + # + sec_uuid = req_spec.add( + itemtype="SEC", + id=2, + heading="Communication", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=5, + heading="A full Message Object including the defined properties and data shall be transfered.", + description="Every Communication shall transfer a complete message with its content.", + reason="See Reasons for every single information of the Message Object.", + fitcriterion="Send two different messages and compare the received message with each sent message.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=6, + heading="A checksumm shall ensure the correct transmition", + description="If the checksum does not fit to the checksum of the transferred data, the message will be ignored, because the complete content including the Service- and Data-ID is possibly corrupted.", + reason="Ensure correct data transfer.", + fitcriterion="Corrupted message is not in the receive buffer after transmission.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=7, + heading="An authentification between server and client shall be possible including status feedback methods ", + description="The Client shall have a method to initiate the authentification. In case that the server and the client do have identical secrets, the authentification shall be successfull.", + reason="Message protection (e.g. for secure functions or data)", + fitcriterion="Check authentification method feedback (client) and authentification feedback (client and server), in case of differing and identical secrets.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=14, + heading="An automatic authentification shall available", + description="An authentification is executed by the client on every connect.", + reason="Simplify handling for authentification.", + fitcriterion="Check authentification feedback (client and server) after connect has been triggered.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=8, + heading="Communication (rx and tx) shall be disabled, if a secret is given but no authentification had been successfully performed.", + description="Communication (rx and tx) shall be disabled, if a secret is given. Except of a response for registered services, saying that a Authentification is required.", + reason="Message protection (e.g. for secure functions or data)", + fitcriterion="RX and TX is not possible, till a successfull authentification has been performed.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=9, + heading="A whitelist for communication (rx and tx) shall be available to enable communication for unauthorised counterparts", + description="It shall be possible to add a specific message, identified by Service-ID and Data-ID, to a whitelist. All messages added to that whitelist shall be transmitted and received, if no authentification was successfull performed.", + reason="Give the user the possibility to define messages which will not be protected behind the authentification mechanism.", + fitcriterion="Transmition and Reception will be enabled, after the message has been added to the whitelist.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=10, + heading="Define a channel name for the server and client after connection is established", + description="After the connection is established, the client will initiate the channel name exchange. The channel name defined on the client side will be dominant.", + reason="Structured logging by creating logger childs for each channel.", + fitcriterion="Perform a channel name exchange with no channel name definition, differing channel name definition and identical channel name definition. In all cases, the channel name of the client will be used. Perform two channel name exchanges with only one channel name definition. This definition will be used.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=11, + heading="The User shall be able to define a new service", + description="The service is defined by a Request Service-ID and a Response Service-ID.", + reason="Definition of Request and Response SIDs.", + fitcriterion="Define a service and check, that the server will respond on the new Service-ID. The Status shall be \"Request has no callback. Data buffered.\", because no callback is registered for that request.", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=12, + heading="Registration of already registered request Service-ID or response Service-ID shall not be possible", + description="An exception shall be raised, if a service registration with an existing request SID or response SID is performed.", + reason="Changing existing services will create strange situations with already registered callbacks.", + fitcriterion="Catch exception for registration of existing request and response SID.", + ) + # + # Section + # + sec_uuid = req_spec.add( + itemtype="SEC", + id=3, + heading="Callbacks", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=13, + heading="It shall be possible to register a callback for a specific Service- and Data-ID", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=15, + heading="It shall be possible to register a callback for a specific Service-ID and all Data-IDs", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=16, + heading="It shall be possible to register a callback for a specific Data-IDs and all Service-IDs", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=17, + heading="It shall be possible to register a callback for all incomming messages", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=18, + heading="Callback choice, if several callbacks are available (caused by wildcard callbacks)", + ) + # + # Section + # + sec_uuid = req_spec.add( + itemtype="SEC", + id=4, + heading="Some additional Information and Passthrough Methods", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=20, + heading="Connection established information", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=21, + heading="Is connected information", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=22, + heading="Reconnect Method", + ) + # + # Section + # + sec_uuid = req_spec.add( + itemtype="SEC", + id=5, + heading="Depreceated struct protocol", + ) + + # Requirement + req_spec.add( + parent=sec_uuid, + itemtype="REQ", + id=23, + heading="A full Message Object including the defined properties and data shall be transfered.", + description="Every Communication shall transfer a complete message with its content.", + reason="See Reasons for every single information of the Message Object.", + fitcriterion="Send two different messages and compare the received message with each sent message.", + ) diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json index 68ca02c..ac889bb 100644 --- a/_testresults_/unittest.json +++ b/_testresults_/unittest.json @@ -1,27 +1,17 @@ { "coverage_information": [ { - "branch_coverage": 100.0, - "filepath": "/usr/data/dirk/prj/unittest/socket_protocol/pylibs/socket_protocol", + "branch_coverage": 98.86, + "filepath": "/home/dirk/my_repositories/unittest/socket_protocol/pylibs/socket_protocol", "files": [ { - "branch_coverage": 100.0, - "filepath": "/usr/data/dirk/prj/unittest/socket_protocol/pylibs/socket_protocol/__init__.py", + "branch_coverage": 98.86, + "filepath": "/home/dirk/my_repositories/unittest/socket_protocol/pylibs/socket_protocol/__init__.py", "fragments": [ - { - "coverage_state": "clean", - "end": 3, - "start": 1 - }, - { - "coverage_state": "covered", - "end": 4, - "start": 4 - }, { "coverage_state": "clean", "end": 28, - "start": 5 + "start": 1 }, { "coverage_state": "covered", @@ -70,288 +60,68 @@ }, { "coverage_state": "clean", - "end": 52, + "end": 51, "start": 51 }, { "coverage_state": "covered", - "end": 53, - "start": 53 + "end": 54, + "start": 52 }, { "coverage_state": "clean", "end": 55, - "start": 54 + "start": 55 }, { "coverage_state": "covered", - "end": 56, + "end": 81, "start": 56 }, - { - "coverage_state": "clean", - "end": 57, - "start": 57 - }, - { - "coverage_state": "covered", - "end": 58, - "start": 58 - }, - { - "coverage_state": "clean", - "end": 59, - "start": 59 - }, - { - "coverage_state": "covered", - "end": 60, - "start": 60 - }, - { - "coverage_state": "clean", - "end": 61, - "start": 61 - }, - { - "coverage_state": "covered", - "end": 62, - "start": 62 - }, - { - "coverage_state": "clean", - "end": 63, - "start": 63 - }, - { - "coverage_state": "covered", - "end": 64, - "start": 64 - }, - { - "coverage_state": "clean", - "end": 65, - "start": 65 - }, - { - "coverage_state": "covered", - "end": 66, - "start": 66 - }, - { - "coverage_state": "clean", - "end": 67, - "start": 67 - }, - { - "coverage_state": "covered", - "end": 68, - "start": 68 - }, - { - "coverage_state": "clean", - "end": 69, - "start": 69 - }, - { - "coverage_state": "covered", - "end": 70, - "start": 70 - }, - { - "coverage_state": "clean", - "end": 71, - "start": 71 - }, - { - "coverage_state": "covered", - "end": 72, - "start": 72 - }, - { - "coverage_state": "clean", - "end": 73, - "start": 73 - }, - { - "coverage_state": "covered", - "end": 74, - "start": 74 - }, - { - "coverage_state": "clean", - "end": 75, - "start": 75 - }, - { - "coverage_state": "covered", - "end": 76, - "start": 76 - }, - { - "coverage_state": "clean", - "end": 77, - "start": 77 - }, - { - "coverage_state": "covered", - "end": 78, - "start": 78 - }, - { - "coverage_state": "clean", - "end": 79, - "start": 79 - }, - { - "coverage_state": "covered", - "end": 80, - "start": 80 - }, { "coverage_state": "clean", "end": 82, - "start": 81 - }, - { - "coverage_state": "covered", - "end": 83, - "start": 83 - }, - { - "coverage_state": "clean", - "end": 84, - "start": 84 - }, - { - "coverage_state": "covered", - "end": 85, - "start": 85 - }, - { - "coverage_state": "clean", - "end": 86, - "start": 86 - }, - { - "coverage_state": "covered", - "end": 87, - "start": 87 - }, - { - "coverage_state": "clean", - "end": 88, - "start": 88 - }, - { - "coverage_state": "covered", - "end": 89, - "start": 89 - }, - { - "coverage_state": "clean", - "end": 90, - "start": 90 - }, - { - "coverage_state": "covered", - "end": 91, - "start": 91 - }, - { - "coverage_state": "clean", - "end": 92, - "start": 92 - }, - { - "coverage_state": "covered", - "end": 93, - "start": 93 - }, - { - "coverage_state": "clean", - "end": 94, - "start": 94 - }, - { - "coverage_state": "covered", - "end": 95, - "start": 95 - }, - { - "coverage_state": "clean", - "end": 96, - "start": 96 + "start": 82 }, { "coverage_state": "covered", "end": 97, - "start": 97 + "start": 83 }, { "coverage_state": "clean", - "end": 107, + "end": 105, "start": 98 }, { "coverage_state": "covered", - "end": 108, - "start": 108 + "end": 106, + "start": 106 }, { "coverage_state": "clean", - "end": 109, - "start": 109 - }, - { - "coverage_state": "covered", - "end": 110, - "start": 110 - }, - { - "coverage_state": "clean", - "end": 111, - "start": 111 - }, - { - "coverage_state": "covered", - "end": 112, - "start": 112 - }, - { - "coverage_state": "clean", - "end": 113, - "start": 113 - }, - { - "coverage_state": "covered", - "end": 114, - "start": 114 - }, - { - "coverage_state": "clean", - "end": 115, - "start": 115 - }, - { - "coverage_state": "covered", - "end": 116, - "start": 116 - }, - { - "coverage_state": "clean", - "end": 117, - "start": 117 + "end": 107, + "start": 107 }, { "coverage_state": "covered", "end": 118, - "start": 118 + "start": 108 + }, + { + "coverage_state": "clean", + "end": 122, + "start": 119 + }, + { + "coverage_state": "covered", + "end": 123, + "start": 123 }, { "coverage_state": "clean", "end": 125, - "start": 119 + "start": 124 }, { "coverage_state": "covered", @@ -435,143 +205,153 @@ }, { "coverage_state": "covered", - "end": 166, + "end": 164, "start": 160 }, { "coverage_state": "clean", - "end": 167, - "start": 167 + "end": 165, + "start": 165 }, { "coverage_state": "covered", + "end": 167, + "start": 166 + }, + { + "coverage_state": "clean", "end": 168, "start": 168 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 169, "start": 169 }, { - "coverage_state": "covered", - "end": 173, + "coverage_state": "clean", + "end": 171, "start": 170 }, + { + "coverage_state": "covered", + "end": 172, + "start": 172 + }, { "coverage_state": "clean", - "end": 175, - "start": 174 + "end": 173, + "start": 173 }, { "coverage_state": "covered", "end": 176, - "start": 176 + "start": 174 }, { "coverage_state": "clean", - "end": 189, + "end": 178, "start": 177 }, { "coverage_state": "covered", - "end": 194, - "start": 190 + "end": 179, + "start": 179 }, { "coverage_state": "clean", - "end": 195, - "start": 195 + "end": 192, + "start": 180 }, { "coverage_state": "covered", - "end": 200, - "start": 196 + "end": 197, + "start": 193 }, { "coverage_state": "clean", - "end": 201, - "start": 201 + "end": 198, + "start": 198 }, { "coverage_state": "covered", - "end": 202, - "start": 202 + "end": 203, + "start": 199 }, { "coverage_state": "clean", - "end": 207, - "start": 203 + "end": 204, + "start": 204 }, { "coverage_state": "covered", - "end": 208, - "start": 208 + "end": 205, + "start": 205 }, { "coverage_state": "clean", - "end": 209, - "start": 209 - }, - { - "coverage_state": "covered", "end": 210, - "start": 210 + "start": 206 }, { - "coverage_state": "clean", - "end": 215, + "coverage_state": "covered", + "end": 211, "start": 211 }, + { + "coverage_state": "clean", + "end": 212, + "start": 212 + }, { "coverage_state": "covered", - "end": 216, - "start": 216 + "end": 213, + "start": 213 }, { "coverage_state": "clean", - "end": 217, - "start": 217 - }, - { - "coverage_state": "covered", "end": 218, - "start": 218 + "start": 214 }, { - "coverage_state": "clean", - "end": 223, + "coverage_state": "covered", + "end": 219, "start": 219 }, + { + "coverage_state": "clean", + "end": 220, + "start": 220 + }, { "coverage_state": "covered", - "end": 224, - "start": 224 + "end": 221, + "start": 221 }, { "coverage_state": "clean", - "end": 225, - "start": 225 - }, - { - "coverage_state": "covered", "end": 226, - "start": 226 + "start": 222 }, { - "coverage_state": "clean", - "end": 231, + "coverage_state": "covered", + "end": 227, "start": 227 }, + { + "coverage_state": "clean", + "end": 228, + "start": 228 + }, { "coverage_state": "covered", - "end": 232, - "start": 232 + "end": 229, + "start": 229 }, { "coverage_state": "clean", "end": 234, - "start": 233 + "start": 230 }, { "coverage_state": "covered", @@ -580,43 +360,43 @@ }, { "coverage_state": "clean", - "end": 281, + "end": 237, "start": 236 }, { "coverage_state": "covered", - "end": 282, - "start": 282 + "end": 238, + "start": 238 }, { "coverage_state": "clean", - "end": 283, - "start": 283 + "end": 284, + "start": 239 }, { "coverage_state": "covered", - "end": 287, - "start": 284 + "end": 285, + "start": 285 }, { "coverage_state": "clean", - "end": 288, - "start": 288 + "end": 286, + "start": 286 }, { "coverage_state": "covered", - "end": 292, - "start": 289 + "end": 290, + "start": 287 }, { "coverage_state": "clean", - "end": 293, - "start": 293 + "end": 291, + "start": 291 }, { "coverage_state": "covered", "end": 295, - "start": 294 + "start": 292 }, { "coverage_state": "clean", @@ -625,218 +405,218 @@ }, { "coverage_state": "covered", - "end": 304, + "end": 298, "start": 297 }, { "coverage_state": "clean", - "end": 305, - "start": 305 + "end": 299, + "start": 299 }, { "coverage_state": "covered", - "end": 306, - "start": 306 + "end": 307, + "start": 300 }, { "coverage_state": "clean", - "end": 307, - "start": 307 - }, - { - "coverage_state": "covered", - "end": 320, + "end": 308, "start": 308 }, - { - "coverage_state": "clean", - "end": 321, - "start": 321 - }, { "coverage_state": "covered", - "end": 327, - "start": 322 + "end": 309, + "start": 309 }, { "coverage_state": "clean", - "end": 328, - "start": 328 + "end": 310, + "start": 310 }, { "coverage_state": "covered", + "end": 323, + "start": 311 + }, + { + "coverage_state": "clean", + "end": 324, + "start": 324 + }, + { + "coverage_state": "covered", + "end": 330, + "start": 325 + }, + { + "coverage_state": "clean", "end": 331, - "start": 329 + "start": 331 }, { - "coverage_state": "clean", - "end": 332, + "coverage_state": "covered", + "end": 334, "start": 332 }, + { + "coverage_state": "clean", + "end": 335, + "start": 335 + }, { "coverage_state": "covered", - "end": 337, - "start": 333 + "end": 340, + "start": 336 }, { "coverage_state": "clean", - "end": 338, - "start": 338 - }, - { - "coverage_state": "covered", "end": 341, - "start": 339 + "start": 341 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 342, "start": 342 }, { - "coverage_state": "covered", + "coverage_state": "partially-covered", "end": 343, "start": 343 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 344, "start": 344 }, { - "coverage_state": "covered", - "end": 349, + "coverage_state": "clean", + "end": 345, "start": 345 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 350, - "start": 350 + "start": 346 }, { - "coverage_state": "covered", - "end": 352, + "coverage_state": "clean", + "end": 351, "start": 351 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 353, - "start": 353 + "start": 352 }, { - "coverage_state": "covered", - "end": 358, + "coverage_state": "clean", + "end": 354, "start": 354 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 359, - "start": 359 + "start": 355 }, { - "coverage_state": "covered", - "end": 363, + "coverage_state": "clean", + "end": 360, "start": 360 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 364, - "start": 364 + "start": 361 }, { - "coverage_state": "covered", - "end": 366, + "coverage_state": "clean", + "end": 365, "start": 365 }, + { + "coverage_state": "covered", + "end": 370, + "start": 366 + }, { "coverage_state": "clean", - "end": 367, - "start": 367 + "end": 371, + "start": 371 }, { "coverage_state": "covered", - "end": 372, - "start": 368 + "end": 374, + "start": 372 }, { "coverage_state": "clean", - "end": 373, - "start": 373 + "end": 375, + "start": 375 }, { "coverage_state": "covered", - "end": 376, - "start": 374 - }, - { - "coverage_state": "clean", "end": 377, - "start": 377 + "start": 376 }, { - "coverage_state": "covered", - "end": 380, + "coverage_state": "clean", + "end": 378, "start": 378 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 381, - "start": 381 + "start": 379 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 382, "start": 382 }, { - "coverage_state": "clean", - "end": 383, + "coverage_state": "covered", + "end": 384, "start": 383 }, - { - "coverage_state": "covered", - "end": 386, - "start": 384 - }, { "coverage_state": "clean", - "end": 387, - "start": 387 + "end": 385, + "start": 385 }, { "coverage_state": "covered", - "end": 389, - "start": 388 + "end": 392, + "start": 386 }, { "coverage_state": "clean", - "end": 390, - "start": 390 + "end": 393, + "start": 393 }, { "coverage_state": "covered", - "end": 397, - "start": 391 - }, - { - "coverage_state": "clean", "end": 398, - "start": 398 + "start": 394 }, { - "coverage_state": "covered", - "end": 404, + "coverage_state": "clean", + "end": 399, "start": 399 }, + { + "coverage_state": "covered", + "end": 401, + "start": 400 + }, { "coverage_state": "clean", - "end": 405, - "start": 405 + "end": 402, + "start": 402 }, { "coverage_state": "covered", "end": 407, - "start": 406 + "start": 403 }, { "coverage_state": "clean", @@ -845,88 +625,108 @@ }, { "coverage_state": "covered", - "end": 413, + "end": 414, "start": 409 }, { "coverage_state": "clean", - "end": 414, - "start": 414 - }, - { - "coverage_state": "covered", - "end": 420, + "end": 415, "start": 415 }, + { + "coverage_state": "covered", + "end": 419, + "start": 416 + }, { "coverage_state": "clean", - "end": 421, + "end": 420, + "start": 420 + }, + { + "coverage_state": "covered", + "end": 424, "start": 421 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 425, - "start": 422 + "start": 425 }, { - "coverage_state": "clean", - "end": 426, + "coverage_state": "covered", + "end": 428, "start": 426 }, + { + "coverage_state": "clean", + "end": 429, + "start": 429 + }, { "coverage_state": "covered", - "end": 433, - "start": 427 + "end": 431, + "start": 430 }, { "coverage_state": "clean", - "end": 434, - "start": 434 + "end": 432, + "start": 432 }, { "coverage_state": "covered", + "end": 435, + "start": 433 + }, + { + "coverage_state": "clean", "end": 436, - "start": 435 + "start": 436 }, { - "coverage_state": "clean", - "end": 437, + "coverage_state": "covered", + "end": 442, "start": 437 }, + { + "coverage_state": "clean", + "end": 443, + "start": 443 + }, { "coverage_state": "covered", - "end": 440, - "start": 438 + "end": 445, + "start": 444 }, { "coverage_state": "clean", - "end": 441, - "start": 441 + "end": 454, + "start": 446 }, { "coverage_state": "covered", - "end": 447, - "start": 442 - }, - { - "coverage_state": "clean", - "end": 448, - "start": 448 - }, - { - "coverage_state": "covered", - "end": 450, - "start": 449 + "end": 458, + "start": 455 }, { "coverage_state": "clean", "end": 459, - "start": 451 + "start": 459 + }, + { + "coverage_state": "covered", + "end": 460, + "start": 460 + }, + { + "coverage_state": "clean", + "end": 461, + "start": 461 }, { "coverage_state": "covered", "end": 463, - "start": 460 + "start": 462 }, { "coverage_state": "clean", @@ -945,73 +745,98 @@ }, { "coverage_state": "covered", - "end": 473, + "end": 470, "start": 469 }, { "coverage_state": "clean", + "end": 471, + "start": 471 + }, + { + "coverage_state": "covered", + "end": 472, + "start": 472 + }, + { + "coverage_state": "clean", + "end": 473, + "start": 473 + }, + { + "coverage_state": "covered", "end": 474, "start": 474 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 476, "start": 475 }, { - "coverage_state": "clean", - "end": 478, + "coverage_state": "covered", + "end": 479, "start": 477 }, + { + "coverage_state": "clean", + "end": 482, + "start": 480 + }, { "coverage_state": "covered", - "end": 481, - "start": 479 + "end": 486, + "start": 483 }, { "coverage_state": "clean", - "end": 484, - "start": 482 + "end": 487, + "start": 487 }, { "coverage_state": "covered", - "end": 488, - "start": 485 + "end": 492, + "start": 488 }, { "coverage_state": "clean", - "end": 489, - "start": 489 + "end": 493, + "start": 493 }, { "coverage_state": "covered", - "end": 496, - "start": 490 + "end": 495, + "start": 494 }, { "coverage_state": "clean", - "end": 500, - "start": 497 + "end": 499, + "start": 496 }, { "coverage_state": "covered", + "end": 501, + "start": 500 + }, + { + "coverage_state": "clean", "end": 502, - "start": 501 + "start": 502 }, { - "coverage_state": "clean", - "end": 503, + "coverage_state": "covered", + "end": 505, "start": 503 }, { - "coverage_state": "covered", - "end": 506, - "start": 504 + "coverage_state": "uncovered", + "end": 507, + "start": 506 }, { - "coverage_state": "uncovered", + "coverage_state": "clean", "end": 508, - "start": 507 + "start": 508 }, { "coverage_state": "covered", @@ -1140,283 +965,303 @@ }, { "coverage_state": "clean", - "end": 572, + "end": 573, "start": 572 }, { "coverage_state": "covered", - "end": 573, - "start": 573 - }, - { - "coverage_state": "clean", - "end": 581, + "end": 574, "start": 574 }, + { + "coverage_state": "clean", + "end": 582, + "start": 575 + }, { "coverage_state": "covered", - "end": 587, - "start": 582 + "end": 584, + "start": 583 }, { "coverage_state": "clean", - "end": 588, - "start": 588 + "end": 585, + "start": 585 }, { "coverage_state": "covered", - "end": 594, + "end": 588, + "start": 586 + }, + { + "coverage_state": "clean", + "end": 589, "start": 589 }, + { + "coverage_state": "covered", + "end": 590, + "start": 590 + }, { "coverage_state": "clean", - "end": 595, - "start": 595 + "end": 591, + "start": 591 }, { "coverage_state": "covered", - "end": 596, - "start": 596 + "end": 597, + "start": 592 }, { "coverage_state": "clean", - "end": 604, - "start": 597 + "end": 599, + "start": 598 }, { "coverage_state": "covered", - "end": 605, - "start": 605 + "end": 600, + "start": 600 }, { "coverage_state": "clean", - "end": 606, - "start": 606 + "end": 608, + "start": 601 }, { "coverage_state": "covered", - "end": 607, - "start": 607 + "end": 609, + "start": 609 }, { "coverage_state": "clean", - "end": 619, - "start": 608 + "end": 610, + "start": 610 }, { "coverage_state": "covered", - "end": 631, - "start": 620 + "end": 611, + "start": 611 }, { "coverage_state": "clean", - "end": 632, - "start": 632 + "end": 623, + "start": 612 }, { "coverage_state": "covered", - "end": 633, - "start": 633 + "end": 635, + "start": 624 }, { "coverage_state": "clean", - "end": 639, - "start": 634 + "end": 636, + "start": 636 }, { "coverage_state": "covered", - "end": 640, - "start": 640 + "end": 637, + "start": 637 }, { "coverage_state": "clean", - "end": 641, - "start": 641 + "end": 643, + "start": 638 }, { "coverage_state": "covered", - "end": 642, - "start": 642 + "end": 644, + "start": 644 }, { "coverage_state": "clean", - "end": 648, - "start": 643 + "end": 645, + "start": 645 }, { "coverage_state": "covered", - "end": 649, - "start": 649 + "end": 646, + "start": 646 }, { "coverage_state": "clean", - "end": 650, - "start": 650 + "end": 652, + "start": 647 }, { "coverage_state": "covered", - "end": 651, - "start": 651 + "end": 653, + "start": 653 }, { "coverage_state": "clean", - "end": 657, - "start": 652 + "end": 654, + "start": 654 }, { "coverage_state": "covered", - "end": 658, - "start": 658 + "end": 655, + "start": 655 }, { "coverage_state": "clean", - "end": 659, - "start": 659 + "end": 661, + "start": 656 }, { "coverage_state": "covered", - "end": 660, - "start": 660 + "end": 662, + "start": 662 }, { "coverage_state": "clean", - "end": 672, - "start": 661 + "end": 663, + "start": 663 }, { "coverage_state": "covered", - "end": 684, - "start": 673 + "end": 664, + "start": 664 }, { "coverage_state": "clean", - "end": 685, - "start": 685 + "end": 676, + "start": 665 }, { "coverage_state": "covered", - "end": 686, - "start": 686 + "end": 687, + "start": 677 }, { "coverage_state": "clean", + "end": 688, + "start": 688 + }, + { + "coverage_state": "covered", "end": 689, - "start": 687 + "start": 689 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 690, "start": 690 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 691, "start": 691 }, { - "coverage_state": "covered", - "end": 692, + "coverage_state": "clean", + "end": 694, "start": 692 }, - { - "coverage_state": "clean", - "end": 725, - "start": 693 - }, { "coverage_state": "covered", - "end": 726, - "start": 726 + "end": 695, + "start": 695 }, { "coverage_state": "clean", - "end": 727, - "start": 727 + "end": 696, + "start": 696 }, { "coverage_state": "covered", - "end": 728, - "start": 728 + "end": 697, + "start": 697 }, { "coverage_state": "clean", - "end": 744, - "start": 729 + "end": 730, + "start": 698 }, { "coverage_state": "covered", - "end": 748, - "start": 745 + "end": 731, + "start": 731 }, { "coverage_state": "clean", - "end": 750, - "start": 749 + "end": 732, + "start": 732 }, { "coverage_state": "covered", - "end": 752, - "start": 751 + "end": 733, + "start": 733 }, { "coverage_state": "clean", - "end": 754, - "start": 753 + "end": 749, + "start": 734 }, { "coverage_state": "covered", + "end": 753, + "start": 750 + }, + { + "coverage_state": "clean", "end": 755, - "start": 755 + "start": 754 }, { - "coverage_state": "clean", - "end": 762, + "coverage_state": "covered", + "end": 756, "start": 756 }, + { + "coverage_state": "clean", + "end": 757, + "start": 757 + }, { "coverage_state": "covered", - "end": 764, - "start": 763 + "end": 758, + "start": 758 }, { "coverage_state": "clean", - "end": 765, - "start": 765 + "end": 760, + "start": 759 }, { "coverage_state": "covered", + "end": 761, + "start": 761 + }, + { + "coverage_state": "clean", "end": 769, - "start": 766 + "start": 762 }, { - "coverage_state": "clean", - "end": 770, + "coverage_state": "covered", + "end": 771, "start": 770 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 772, - "start": 771 + "start": 772 }, { - "coverage_state": "clean", - "end": 773, + "coverage_state": "covered", + "end": 776, "start": 773 }, - { - "coverage_state": "covered", - "end": 778, - "start": 774 - }, { "coverage_state": "clean", - "end": 779, - "start": 779 + "end": 777, + "start": 777 }, { "coverage_state": "covered", "end": 782, - "start": 780 + "start": 778 }, { "coverage_state": "clean", @@ -1435,40 +1280,20 @@ }, { "coverage_state": "covered", - "end": 792, + "end": 791, "start": 790 }, - { - "coverage_state": "clean", - "end": 793, - "start": 793 - }, - { - "coverage_state": "covered", - "end": 794, - "start": 794 - }, - { - "coverage_state": "clean", - "end": 795, - "start": 795 - }, - { - "coverage_state": "covered", - "end": 797, - "start": 796 - }, { "coverage_state": "clean", "end": null, - "start": 798 + "start": 792 } ], - "line_coverage": 99.49, + "line_coverage": 99.5, "name": "socket_protocol.__init__.py" } ], - "line_coverage": 99.49, + "line_coverage": 99.5, "name": "socket_protocol" } ], @@ -1477,302 +1302,179 @@ "testcase_list": [] }, "specification": { - "comment": "Comment", - "item_dict": { - "_-UtxUEzYEeuiHtQbLi1mZg": { - "Description": "The Data-ID shall hold information to differtiate the data for a specific Service.", - "Fitcriterion": "A Data-ID is part of the Message Object and it is holding the Data-ID information.", - "Heading": "Data-ID", - "ID": "REQ-3", - "ReasonForImplementation": "Give the possibility to transfer different information for each Service. ", - "last_change": "2021-01-02T11:30:34.261+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_-UtxUEzYEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "entries": { + "REQ-0001": { + "description": "The Status shall hold some general information (in most cases it is used by the responder). Examples: Okay, Service or Data unknown, Operation not permitted, Authentification required, \\ldots", + "fitcriterion": "A Status is part of the Message Object and it is holding the Status information.", + "heading": "Status", + "reason": "Give the possibility to transfer additional status information (e.g. to explain negative responses)." }, - "_2pi_8EzZEeuiHtQbLi1mZg": { - "Description": "Every Communication shall transfer a complete message with its content.", - "Fitcriterion": "Send two different messages and compare the received message with each sent message.", - "Heading": "A full Message Object including the defined properties and data shall be transfered.", - "ID": "REQ-5", - "ReasonForImplementation": "See Reasons for every single information of the Message Object.", - "last_change": "2021-01-02T18:34:06.024+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_2pi_8EzZEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0002": { + "description": "The Service-ID shall hold information about the type of the request / corresponding response. Examples: read request, write request, read response, write response, \\ldots", + "fitcriterion": "A Service-ID is part of the Message Object and it is holding the Service-ID information.", + "heading": "Service-ID", + "reason": "Give the requestor the possibility to use different types (Services) for a transfer. " }, - "_4w4SsE1DEeuiHtQbLi1mZg": { - "Description": "An authentification is executed by the client on every connect.", - "Fitcriterion": "Check authentification feedback (client and server) after connect has been triggered.", - "Heading": "An automatic authentification shall available", - "ID": "REQ-14", - "ReasonForImplementation": "Simplify handling for authentification.", - "last_change": "2021-01-02T23:14:05.136+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_4w4SsE1DEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0003": { + "description": "The Data-ID shall hold information to differtiate the data for a specific Service.", + "fitcriterion": "A Data-ID is part of the Message Object and it is holding the Data-ID information.", + "heading": "Data-ID", + "reason": "Give the possibility to transfer different information for each Service. " }, - "_7izDUEzYEeuiHtQbLi1mZg": { - "Description": "The Service-ID shall hold information about the type of the request / corresponding response. Examples: read request, write request, read response, write response, \\ldots", - "Fitcriterion": "A Service-ID is part of the Message Object and it is holding the Service-ID information.", - "Heading": "Service-ID", - "ID": "REQ-2", - "ReasonForImplementation": "Give the requestor the possibility to use different types (Services) for a transfer. ", - "last_change": "2021-01-02T11:30:12.192+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_7izDUEzYEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0004": { + "description": "The Data shall hold the data to be transfered. For the most requests not data is transmitted.", + "fitcriterion": "Data is part of the Message Object and it is holding the Data information.", + "heading": "Data", + "reason": "Give the possibility to transfer Data. " }, - "_AlIUwEzZEeuiHtQbLi1mZg": { - "Description": "The Data shall hold the data to be transfered. For the most requests not data is transmitted.", - "Fitcriterion": "Data is part of the Message Object and it is holding the Data information.", - "Heading": "Data", - "ID": "REQ-4", - "ReasonForImplementation": "Give the possibility to transfer Data. ", - "last_change": "2021-01-02T11:31:03.526+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_AlIUwEzZEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0005": { + "description": "Every Communication shall transfer a complete message with its content.", + "fitcriterion": "Send two different messages and compare the received message with each sent message.", + "heading": "A full Message Object including the defined properties and data shall be transfered.", + "reason": "See Reasons for every single information of the Message Object." }, - "_CZeooE0YEeuiHtQbLi1mZg": { - "Description": "It shall be possible to add a specific message, identified by Service-ID and Data-ID, to a whitelist. All messages added to that whitelist shall be transmitted and received, if no authentification was successfull performed.", - "Fitcriterion": "Transmition and Reception will be enabled, after the message has been added to the whitelist.", - "Heading": "A whitelist for communication (rx and tx) shall be available to enable communication for unauthorised counterparts", - "ID": "REQ-9", - "ReasonForImplementation": "Give the user the possibility to define messages which will not be protected behind the authentification mechanism.", - "last_change": "2021-01-02T17:31:54.018+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_CZeooE0YEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0006": { + "description": "If the checksum does not fit to the checksum of the transferred data, the message will be ignored, because the complete content including the Service- and Data-ID is possibly corrupted.", + "fitcriterion": "Corrupted message is not in the receive buffer after transmission.", + "heading": "A checksumm shall ensure the correct transmition", + "reason": "Ensure correct data transfer." }, - "_GhVN8E4MEeupHeIYRnC0qw": { - "Heading": "Some additional Information and Passthrough Methods", - "last_change": "2021-01-04T01:07:33.441+01:00", - "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg", - "system_uid": "_GhVN8E4MEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0007": { + "description": "The Client shall have a method to initiate the authentification. In case that the server and the client do have identical secrets, the authentification shall be successfull.", + "fitcriterion": "Check authentification method feedback (client) and authentification feedback (client and server), in case of differing and identical secrets.", + "heading": "An authentification between server and client shall be possible including status feedback methods ", + "reason": "Message protection (e.g. for secure functions or data)" }, - "_Lmn-kE0hEeuiHtQbLi1mZg": { - "Description": "After the connection is established, the client will initiate the channel name exchange. The channel name defined on the client side will be dominant.", - "Fitcriterion": "Perform a channel name exchange with no channel name definition, differing channel name definition and identical channel name definition. In all cases, the channel name of the client will be used. Perform two channel name exchanges with only one channel name definition. This definition will be used.", - "Heading": "Define a channel name for the server and client after connection is established", - "ID": "REQ-10", - "ReasonForImplementation": "Structured logging by creating logger childs for each channel.", - "last_change": "2021-01-02T23:15:38.830+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_Lmn-kE0hEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0008": { + "description": "Communication (rx and tx) shall be disabled, if a secret is given. Except of a response for registered services, saying that a Authentification is required.", + "fitcriterion": "RX and TX is not possible, till a successfull authentification has been performed.", + "heading": "Communication (rx and tx) shall be disabled, if a secret is given but no authentification had been successfully performed.", + "reason": "Message protection (e.g. for secure functions or data)" }, - "_MR7eOHYYEem_kd-7nxt1sg": { - "Description": "A Message Object shall hold the following information for transmission.", - "Heading": "Message Object", - "last_change": "2021-01-02T09:59:58.979+01:00", - "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg", - "system_uid": "_MR7eOHYYEem_kd-7nxt1sg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0009": { + "description": "It shall be possible to add a specific message, identified by Service-ID and Data-ID, to a whitelist. All messages added to that whitelist shall be transmitted and received, if no authentification was successfull performed.", + "fitcriterion": "Transmition and Reception will be enabled, after the message has been added to the whitelist.", + "heading": "A whitelist for communication (rx and tx) shall be available to enable communication for unauthorised counterparts", + "reason": "Give the user the possibility to define messages which will not be protected behind the authentification mechanism." }, - "_Pn3WgE0NEeuiHtQbLi1mZg": { - "Description": "Communication (rx and tx) shall be disabled, if a secret is given. Except of a response for registered services, saying that a Authentification is required.", - "Fitcriterion": "RX and TX is not possible, till a successfull authentification has been performed.", - "Heading": "Communication (rx and tx) shall be disabled, if a secret is given but no authentification had been successfully performed.", - "ID": "REQ-8", - "ReasonForImplementation": "Message protection (e.g. for secure functions or data)", - "last_change": "2021-01-06T17:47:34.036+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_Pn3WgE0NEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0010": { + "description": "After the connection is established, the client will initiate the channel name exchange. The channel name defined on the client side will be dominant.", + "fitcriterion": "Perform a channel name exchange with no channel name definition, differing channel name definition and identical channel name definition. In all cases, the channel name of the client will be used. Perform two channel name exchanges with only one channel name definition. This definition will be used.", + "heading": "Define a channel name for the server and client after connection is established", + "reason": "Structured logging by creating logger childs for each channel." }, - "_Tb-78E4LEeupHeIYRnC0qw": { - "Heading": "It shall be possible to register a callback for a specific Service-ID and all Data-IDs", - "ID": "REQ-15", - "last_change": "2021-01-03T22:34:48.778+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_Tb-78E4LEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0011": { + "description": "The service is defined by a Request Service-ID and a Response Service-ID.", + "fitcriterion": "Define a service and check, that the server will respond on the new Service-ID. The Status shall be \"Request has no callback. Data buffered.\", because no callback is registered for that request.", + "heading": "The User shall be able to define a new service", + "reason": "Definition of Request and Response SIDs." }, - "_XzMFcHYZEem_kd-7nxt1sg": { - "Description": "The Status shall hold some general information (in most cases it is used by the responder). Examples: Okay, Service or Data unknown, Operation not permitted, Authentification required, \\ldots", - "Fitcriterion": "A Status is part of the Message Object and it is holding the Status information.", - "Heading": "Status", - "ID": "REQ-1", - "ReasonForImplementation": "Give the possibility to transfer additional status information (e.g. to explain negative responses).", - "last_change": "2021-01-02T11:30:19.795+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_XzMFcHYZEem_kd-7nxt1sg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0012": { + "description": "An exception shall be raised, if a service registration with an existing request SID or response SID is performed.", + "fitcriterion": "Catch exception for registration of existing request and response SID.", + "heading": "Registration of already registered request Service-ID or response Service-ID shall not be possible", + "reason": "Changing existing services will create strange situations with already registered callbacks." }, - "_YfrfUE4LEeupHeIYRnC0qw": { - "Heading": "It shall be possible to register a callback for a specific Data-IDs and all Service-IDs", - "ID": "REQ-16", - "last_change": "2021-01-03T22:35:14.051+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_YfrfUE4LEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0013": { + "heading": "It shall be possible to register a callback for a specific Service- and Data-ID" }, - "_YhmzIE4lEeupHeIYRnC0qw": { - "Description": "Every Communication shall transfer a complete message with its content.", - "Fitcriterion": "Send two different messages and compare the received message with each sent message.", - "Heading": "A full Message Object including the defined properties and data shall be transfered.", - "ID": "REQ-23", - "ReasonForImplementation": "See Reasons for every single information of the Message Object.", - "last_change": "2021-01-04T01:39:17.964+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_YhmzIE4lEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0014": { + "description": "An authentification is executed by the client on every connect.", + "fitcriterion": "Check authentification feedback (client and server) after connect has been triggered.", + "heading": "An automatic authentification shall available", + "reason": "Simplify handling for authentification." }, - "_ZJMD8EzaEeuiHtQbLi1mZg": { - "Description": "If the checksum does not fit to the checksum of the transferred data, the message will be ignored, because the complete content including the Service- and Data-ID is possibly corrupted.", - "Fitcriterion": "Corrupted message is not in the receive buffer after transmission.", - "Heading": "A checksumm shall ensure the correct transmition", - "ID": "REQ-6", - "ReasonForImplementation": "Ensure correct data transfer.", - "last_change": "2021-01-02T10:14:02.766+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_ZJMD8EzaEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0015": { + "heading": "It shall be possible to register a callback for a specific Service-ID and all Data-IDs" }, - "_ZOW3ME0vEeuiHtQbLi1mZg": { - "Description": "An exception shall be raised, if a service registration with an existing request SID or response SID is performed.", - "Fitcriterion": "Catch exception for registration of existing request and response SID.", - "Heading": "Registration of already registered request Service-ID or response Service-ID shall not be possible", - "ID": "REQ-12", - "ReasonForImplementation": "Changing existing services will create strange situations with already registered callbacks.", - "last_change": "2021-01-02T23:17:23.969+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_ZOW3ME0vEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0016": { + "heading": "It shall be possible to register a callback for a specific Data-IDs and all Service-IDs" }, - "_aA508E4gEeupHeIYRnC0qw": { - "Heading": "Connection established information", - "ID": "REQ-20", - "last_change": "2021-01-04T01:04:20.847+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_aA508E4gEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0017": { + "heading": "It shall be possible to register a callback for all incomming messages" }, - "_elO7wE4gEeupHeIYRnC0qw": { - "Heading": "Is connected information", - "ID": "REQ-21", - "last_change": "2021-01-04T01:04:39.113+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_elO7wE4gEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0018": { + "heading": "Callback choice, if several callbacks are available (caused by wildcard callbacks)" }, - "_gvJ1oE4gEeupHeIYRnC0qw": { - "Heading": "Reconnect Method", - "ID": "REQ-22", - "last_change": "2021-01-04T01:05:07.252+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_gvJ1oE4gEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0020": { + "heading": "Connection established information" }, - "_j-npsE0MEeuiHtQbLi1mZg": { - "Description": "The Client shall have a method to initiate the authentification. In case that the server and the client do have identical secrets, the authentification shall be successfull.", - "Fitcriterion": "Check authentification method feedback (client) and authentification feedback (client and server), in case of differing and identical secrets.", - "Heading": "An authentification between server and client shall be possible including status feedback methods ", - "ID": "REQ-7", - "ReasonForImplementation": "Message protection (e.g. for secure functions or data)", - "last_change": "2021-01-02T16:09:47.102+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_j-npsE0MEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0021": { + "heading": "Is connected information" }, - "_jZU84E4gEeupHeIYRnC0qw": { - "Heading": "Depreceated struct protocol", - "last_change": "2021-01-04T01:06:22.776+01:00", - "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg", - "system_uid": "_jZU84E4gEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0022": { + "heading": "Reconnect Method" }, - "_k-Q4EE0oEeuiHtQbLi1mZg": { - "Description": "The service is defined by a Request Service-ID and a Response Service-ID.", - "Fitcriterion": "Define a service and check, that the server will respond on the new Service-ID. The Status shall be \"Request has no callback. Data buffered.\", because no callback is registered for that request.", - "Heading": "The User shall be able to define a new service", - "ID": "REQ-11", - "ReasonForImplementation": "Definition of Request and Response SIDs.", - "last_change": "2021-01-02T19:35:16.321+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_k-Q4EE0oEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "REQ-0023": { + "description": "Every Communication shall transfer a complete message with its content.", + "fitcriterion": "Send two different messages and compare the received message with each sent message.", + "heading": "A full Message Object including the defined properties and data shall be transfered.", + "reason": "See Reasons for every single information of the Message Object." }, - "_k7opsE4LEeupHeIYRnC0qw": { - "Heading": "It shall be possible to register a callback for all incomming messages", - "ID": "REQ-17", - "last_change": "2021-01-03T22:35:14.081+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_k7opsE4LEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "SEC-0001": { + "childs": [ + "REQ-0001", + "REQ-0002", + "REQ-0003", + "REQ-0004" + ], + "heading": "Message Object" }, - "_qUrK8E4LEeupHeIYRnC0qw": { - "Heading": "Callbacks", - "last_change": "2021-01-03T22:35:52.411+01:00", - "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg", - "system_uid": "_qUrK8E4LEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "SEC-0002": { + "childs": [ + "REQ-0005", + "REQ-0006", + "REQ-0007", + "REQ-0014", + "REQ-0008", + "REQ-0009", + "REQ-0010", + "REQ-0011", + "REQ-0012" + ], + "heading": "Communication" }, - "_r9srME0vEeuiHtQbLi1mZg": { - "Description": "", - "Heading": "It shall be possible to register a callback for a specific Service- and Data-ID", - "ID": "REQ-13", - "last_change": "2021-01-03T22:33:14.224+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_r9srME0vEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "SEC-0003": { + "childs": [ + "REQ-0013", + "REQ-0015", + "REQ-0016", + "REQ-0017", + "REQ-0018" + ], + "heading": "Callbacks" }, - "_tb5akE4LEeupHeIYRnC0qw": { - "Heading": "Callback choice, if several callbacks are available (caused by wildcard callbacks)", - "ID": "REQ-18", - "last_change": "2021-01-03T22:36:13.396+01:00", - "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", - "system_uid": "_tb5akE4LEeupHeIYRnC0qw", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "SEC-0004": { + "childs": [ + "REQ-0020", + "REQ-0021", + "REQ-0022" + ], + "heading": "Some additional Information and Passthrough Methods" }, - "_zdGSEEzZEeuiHtQbLi1mZg": { - "Heading": "Communication", - "last_change": "2021-01-03T23:05:27.372+01:00", - "system_type_uid": "_4-K5EHYYEem_kd-7nxt1sg", - "system_uid": "_zdGSEEzZEeuiHtQbLi1mZg", - "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + "SEC-0005": { + "childs": [ + "REQ-0023" + ], + "heading": "Depreceated struct protocol" } }, - "titel": "Title", - "uid_list_sorted": [ - "_MR7eOHYYEem_kd-7nxt1sg", - "_XzMFcHYZEem_kd-7nxt1sg", - "_7izDUEzYEeuiHtQbLi1mZg", - "_-UtxUEzYEeuiHtQbLi1mZg", - "_AlIUwEzZEeuiHtQbLi1mZg", - "_zdGSEEzZEeuiHtQbLi1mZg", - "_2pi_8EzZEeuiHtQbLi1mZg", - "_ZJMD8EzaEeuiHtQbLi1mZg", - "_j-npsE0MEeuiHtQbLi1mZg", - "_4w4SsE1DEeuiHtQbLi1mZg", - "_Pn3WgE0NEeuiHtQbLi1mZg", - "_CZeooE0YEeuiHtQbLi1mZg", - "_Lmn-kE0hEeuiHtQbLi1mZg", - "_k-Q4EE0oEeuiHtQbLi1mZg", - "_ZOW3ME0vEeuiHtQbLi1mZg", - "_qUrK8E4LEeupHeIYRnC0qw", - "_r9srME0vEeuiHtQbLi1mZg", - "_Tb-78E4LEeupHeIYRnC0qw", - "_YfrfUE4LEeupHeIYRnC0qw", - "_k7opsE4LEeupHeIYRnC0qw", - "_tb5akE4LEeupHeIYRnC0qw", - "_GhVN8E4MEeupHeIYRnC0qw", - "_aA508E4gEeupHeIYRnC0qw", - "_elO7wE4gEeupHeIYRnC0qw", - "_gvJ1oE4gEeupHeIYRnC0qw", - "_jZU84E4gEeupHeIYRnC0qw", - "_YhmzIE4lEeupHeIYRnC0qw" - ] + "sections": [ + "SEC-0001", + "SEC-0002", + "SEC-0003", + "SEC-0004", + "SEC-0005" + ], + "title": "Title" }, "system_information": { "Architecture": "64bit", - "Distribution": "Linux Mint 20.1 ulyssa", - "Hostname": "erle", - "Kernel": "5.8.0-44-generic (#50~20.04.1-Ubuntu SMP Wed Feb 10 21:07:30 UTC 2021)", + "Distribution": "Debian GNU/Linux 12 bookworm", + "Hostname": "ahorn", + "Kernel": "6.1.0-17-amd64 (#1 SMP PREEMPT_DYNAMIC Debian 6.1.69-1 (2023-12-30))", "Machine": "x86_64", - "Path": "/usr/data/dirk/prj/unittest/socket_protocol/unittest", + "Path": "/home/dirk/my_repositories/unittest/socket_protocol", "System": "Linux", "Username": "dirk" }, @@ -1786,41 +1488,13 @@ "Description": "The Module {\\tt socket\\_protocol} is designed for point to point communication for client-server issues.\nFor more Information read the sphinx documentation.", "Name": "socket_protocol", "State": "Released", - "Supported Interpreters": "python2, python3", - "Version": "20d646cb01f1c24752142245b0c4b36c" + "Supported Interpreters": "python3", + "Version": "af40b656c85d25ecf7eb1ee930b00fdf" }, "testrun_list": [ { - "heading_dict": { - "_-UtxUEzYEeuiHtQbLi1mZg": "Data-ID", - "_2pi_8EzZEeuiHtQbLi1mZg": "A full Message Object including the defined properties and data shall be transfered.", - "_4w4SsE1DEeuiHtQbLi1mZg": "An automatic authentification shall available", - "_7izDUEzYEeuiHtQbLi1mZg": "Service-ID", - "_AlIUwEzZEeuiHtQbLi1mZg": "Data", - "_CZeooE0YEeuiHtQbLi1mZg": "A whitelist for communication (rx and tx) shall be available to enable communication for unauthorised counterparts", - "_GhVN8E4MEeupHeIYRnC0qw": "Some additional Information and Passthrough Methods", - "_Lmn-kE0hEeuiHtQbLi1mZg": "Define a channel name for the server and client after connection is established", - "_MR7eOHYYEem_kd-7nxt1sg": "Message Object", - "_Pn3WgE0NEeuiHtQbLi1mZg": "Communication (rx and tx) shall be disabled, if a secret is given but no authentification had been successfully performed.", - "_Tb-78E4LEeupHeIYRnC0qw": "It shall be possible to register a callback for a specific Service-ID and all Data-IDs", - "_XzMFcHYZEem_kd-7nxt1sg": "Status", - "_YfrfUE4LEeupHeIYRnC0qw": "It shall be possible to register a callback for a specific Data-IDs and all Service-IDs", - "_YhmzIE4lEeupHeIYRnC0qw": "A full Message Object including the defined properties and data shall be transfered.", - "_ZJMD8EzaEeuiHtQbLi1mZg": "A checksumm shall ensure the correct transmition", - "_ZOW3ME0vEeuiHtQbLi1mZg": "Registration of already registered request Service-ID or response Service-ID shall not be possible", - "_aA508E4gEeupHeIYRnC0qw": "Connection established information", - "_elO7wE4gEeupHeIYRnC0qw": "Is connected information", - "_gvJ1oE4gEeupHeIYRnC0qw": "Reconnect Method", - "_j-npsE0MEeuiHtQbLi1mZg": "An authentification between server and client shall be possible including status feedback methods ", - "_jZU84E4gEeupHeIYRnC0qw": "Depreceated struct protocol", - "_k-Q4EE0oEeuiHtQbLi1mZg": "The User shall be able to define a new service", - "_k7opsE4LEeupHeIYRnC0qw": "It shall be possible to register a callback for all incomming messages", - "_qUrK8E4LEeupHeIYRnC0qw": "Callbacks", - "_r9srME0vEeuiHtQbLi1mZg": "It shall be possible to register a callback for a specific Service- and Data-ID", - "_tb5akE4LEeupHeIYRnC0qw": "Callback choice, if several callbacks are available (caused by wildcard callbacks)", - "_zdGSEEzZEeuiHtQbLi1mZg": "Communication" - }, - "interpreter": "python 2.7.18 (final)", + "heading_dict": {}, + "interpreter": "python 3.11.2 (final)", "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, @@ -1834,39304 +1508,52 @@ "90": "Full Test (all defined tests)" }, "testcases": { - "_-UtxUEzYEeuiHtQbLi1mZg": { + "REQ-0001": { "args": null, - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956276, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.1511803, "exc_text": null, "filename": "__init__.py", - "funcName": "testrun", + "funcName": "testCase", "levelname": "INFO", "levelno": 20, - "lineno": 28, - "message": "_-UtxUEzYEeuiHtQbLi1mZg", + "lineno": 327, + "message": "REQ-0001", "module": "__init__", "moduleLogger": [], - "msecs": 956.2759399414062, - "msg": "_-UtxUEzYEeuiHtQbLi1mZg", + "msecs": 151.0, + "msg": "REQ-0001", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 52.206993103027344, + "relativeCreated": 54.86702919006348, + "stack_info": null, "testcaseLogger": [ { "args": [ - "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" + "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956375, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.151345, "exc_text": null, "filename": "test_message_object.py", "funcName": "check_presence_of_key_in_message_object", "levelname": "DEBUG", "levelno": 10, "lineno": 10, - "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", + "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", "module": "test_message_object", "moduleLogger": [], - "msecs": 956.3748836517334, + "msecs": 151.0, "msg": "Creating empty message object: %s", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66085, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_message_object.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 52.30593681335449, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'data_id'" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956568, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "data_id is part of the message object is correct ('data_id' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "data_id is part of the message object", - "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", - "" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956467, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (data_id is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", - "module": "test", - "msecs": 956.4669132232666, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.397966384887695, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "data_id is part of the message object", - "'data_id'" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956521, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (data_id is part of the message object): 'data_id' in result", - "module": "test", - "msecs": 956.5210342407227, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.45208740234375, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 956.5680027008057, - "msg": "data_id is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.49905586242676, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 - }, - { - "args": [ - "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956659, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 956.6590785980225, - "msg": "Creating a maximum message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.590131759643555, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'data_id'" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956837, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "data_id is part of the message object is correct ('data_id' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "data_id is part of the message object", - "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", - "" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956744, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (data_id is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", - "module": "test", - "msecs": 956.7439556121826, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.67500877380371, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "data_id is part of the message object", - "'data_id'" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956793, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (data_id is part of the message object): 'data_id' in result", - "module": "test", - "msecs": 956.7930698394775, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.72412300109863, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 956.8369388580322, - "msg": "data_id is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.76799201965332, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.38690185546875e-05 - }, - { - "args": [ - "'DID'", - "" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957027, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Content in message object for data_id is correct (Content 'DID' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Content in message object for data_id", - "'DID'", - "" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956927, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Content in message object for data_id): 'DID' ()", - "module": "test", - "msecs": 956.9270610809326, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.85811424255371, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Content in message object for data_id", - "'DID'", - "" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956976, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Content in message object for data_id): result = 'DID' ()", - "module": "test", - "msecs": 956.9759368896484, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.90699005126953, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 957.0269584655762, - "msg": "Content in message object for data_id is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.958011627197266, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 5.1021575927734375e-05 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0007510185241699219, - "time_finished": "2021-02-28 18:59:29,957", - "time_start": "2021-02-28 18:59:29,956" - }, - "_2pi_8EzZEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:29,958", - "created": 1614535169.958096, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 33, - "message": "_2pi_8EzZEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 958.0960273742676, - "msg": "_2pi_8EzZEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 54.02708053588867, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.962061, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:29,958", - "created": 1614535169.958484, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 958.4839344024658, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 54.414987564086914, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:29,958", - "created": 1614535169.958844, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 958.8439464569092, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 54.77499961853027, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:29,958", - "created": 1614535169.958947, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 958.946943283081, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 54.87799644470215, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959123, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 959.122896194458, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.0539493560791, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959197, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 959.1970443725586, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.12809753417969, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959314, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 959.3141078948975, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.245161056518555, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959381, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 959.381103515625, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.312156677246094, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959438, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 959.4380855560303, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.36913871765137, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959492, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 959.4919681549072, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.42302131652832, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959558, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 959.5580101013184, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.48906326293945, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959763, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 959.7630500793457, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.6941032409668, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959843, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 959.8429203033447, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.77397346496582, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959918, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 959.9180221557617, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.84907531738281, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:29,959", - "created": 1614535169.959991, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 959.9909782409668, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 55.92203140258789, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960088, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 960.0880146026611, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.01906776428223, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960156, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 960.1559638977051, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.08701705932617, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960217, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 960.2169990539551, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.14805221557617, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 960.2820873260498, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.2131404876709, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960345, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 960.3450298309326, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.27608299255371, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960408, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 960.4079723358154, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.33902549743652, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960472, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 960.4721069335938, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.403160095214844, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960535, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 960.5350494384766, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.466102600097656, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960601, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 960.6010913848877, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.53214454650879, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960763, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 960.7629776000977, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.69403076171875, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960838, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 960.8380794525146, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.76913261413574, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960927, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 960.9270095825195, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.858062744140625, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:29,960", - "created": 1614535169.960993, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 960.9930515289307, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.92410469055176, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.96106, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 961.0600471496582, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 56.9911003112793, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961121, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 961.1210823059082, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.0521354675293, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961187, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 961.1868858337402, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.11793899536133, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961258, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 961.2579345703125, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.188987731933594, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961327, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 961.327075958252, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.25812911987305, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961391, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 961.3909721374512, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.322025299072266, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961457, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 961.4570140838623, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.3880672454834, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.96153, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 961.5299701690674, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.46102333068848, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961613, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 961.6129398345947, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.54399299621582, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961676, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 961.6758823394775, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.60693550109863, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961736, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 961.7359638214111, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.66701698303223, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961793, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 961.7929458618164, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.7239990234375, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961847, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 961.8470668792725, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.778120040893555, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961902, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 961.9019031524658, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.832956314086914, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:29,961", - "created": 1614535169.961956, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 961.9560241699219, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.88707733154297, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.962007, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 962.0070457458496, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.9380989074707, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 962.0609283447266, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 57.991981506347656, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 5.3882598876953125e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:30,306", - "created": 1614535170.306138, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.962188, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 962.1880054473877, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 58.11905860900879, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.96226, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 962.2600078582764, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 58.19106101989746, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.962322, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 962.3219966888428, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 58.25304985046387, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.96241, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 962.4099731445312, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 58.341026306152344, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.962594, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 962.5940322875977, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 58.52508544921875, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.962659, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 962.6588821411133, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 58.589935302734375, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:29,962", - "created": 1614535169.962716, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 962.7161026000977, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 58.64715576171875, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:29,963", - "created": 1614535169.963791, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 963.7908935546875, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 59.721946716308594, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 964.015007019043, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 59.94606018066406, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964126, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 964.1261100769043, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.05716323852539, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964214, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 964.2140865325928, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.14513969421387, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964333, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 964.3330574035645, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.26411056518555, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964422, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 964.4219875335693, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.35304069519043, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964544, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 964.5440578460693, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.47511100769043, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964634, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 964.6339416503906, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.56499481201172, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964723, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 964.7231101989746, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.6541633605957, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964776, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 964.7760391235352, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.70709228515625, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964846, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 964.8458957672119, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.77694892883301, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.9649, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 964.900016784668, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.83106994628906, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:29,964", - "created": 1614535169.964977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 964.9770259857178, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.90807914733887, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:29,965", - "created": 1614535169.965037, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 965.0371074676514, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 60.96816062927246, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,965", - "created": 1614535169.965093, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 965.0928974151611, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 61.02395057678223, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:29,965", - "created": 1614535169.965141, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 965.1410579681396, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 61.07211112976074, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:29,965", - "created": 1614535169.965246, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 965.2459621429443, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 61.17701530456543, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:29,965", - "created": 1614535169.965386, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 965.385913848877, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 61.31696701049805, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:29,965", - "created": 1614535169.965457, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 965.4569625854492, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 61.38801574707031, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:29,965", - "created": 1614535169.965546, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 965.5458927154541, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 61.476945877075195, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:29,966", - "created": 1614535169.966426, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 966.425895690918, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 62.35694885253906, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:29,966", - "created": 1614535169.966588, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 966.588020324707, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 62.519073486328125, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,966", - "created": 1614535169.966665, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 966.6650295257568, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 62.59608268737793, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:29,966", - "created": 1614535169.966725, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 966.7251110076904, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 62.65616416931152, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,966", - "created": 1614535169.966801, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 966.8009281158447, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 62.73198127746582, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:29,966", - "created": 1614535169.966866, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 966.8660163879395, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 62.79706954956055, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,966", - "created": 1614535169.966959, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 966.9589996337891, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 62.890052795410156, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.96702, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 967.0200347900391, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 62.951087951660156, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967101, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 967.1010971069336, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.03215026855469, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967165, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 967.1649932861328, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.096046447753906, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967249, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 967.2489166259766, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.179969787597656, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967311, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 967.310905456543, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.24195861816406, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967407, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 967.4069881439209, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.33804130554199, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967479, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 967.4789905548096, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.410043716430664, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.96755, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 967.5500392913818, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.48109245300293, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.96761, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 967.6098823547363, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.54093551635742, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967734, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 967.7340984344482, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.665151596069336, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967895, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 967.8950309753418, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.82608413696289, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:29,967", - "created": 1614535169.967981, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 967.9811000823975, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 63.912153244018555, - "thread": 139999122405120, - "threadName": "Thread-2" - } - ], - "msecs": 306.1380386352539, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 402.069091796875, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.33815693855285645 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:30,509", - "created": 1614535170.509165, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "send_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 53, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:30,307", - "created": 1614535170.307209, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 307.2090148925781, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 403.1400680541992, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:30,332", - "created": 1614535170.33215, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 332.1499824523926, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 428.0810356140137, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:30,332", - "created": 1614535170.33283, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 332.82995223999023, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 428.7610054016113, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,333", - "created": 1614535170.333117, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 333.1170082092285, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 429.0480613708496, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:30,333", - "created": 1614535170.333364, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 333.36400985717773, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 429.2950630187988, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,333", - "created": 1614535170.333709, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 333.7090015411377, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 429.6400547027588, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,333", - "created": 1614535170.333966, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 333.9660167694092, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 429.8970699310303, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,334", - "created": 1614535170.334314, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 334.31410789489746, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 430.24516105651855, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,334", - "created": 1614535170.334551, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 334.5510959625244, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 430.4821491241455, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,334", - "created": 1614535170.334886, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 334.8860740661621, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 430.8171272277832, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,335", - "created": 1614535170.335149, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 335.14904975891113, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 431.0801029205322, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:30,335", - "created": 1614535170.335772, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 335.7720375061035, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 431.7030906677246, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:30,336", - "created": 1614535170.33619, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 336.18998527526855, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 432.12103843688965, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,336", - "created": 1614535170.336593, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 336.5929126739502, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 432.5239658355713, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,336", - "created": 1614535170.336861, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 336.86089515686035, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 432.79194831848145, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,337", - "created": 1614535170.337181, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 337.18109130859375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 433.11214447021484, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:30,337", - "created": 1614535170.337428, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 337.42809295654297, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 433.35914611816406, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - "(88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" - ], - "asctime": "2021-02-28 18:59:30,338", - "created": 1614535170.338077, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "stp", - "msecs": 338.0770683288574, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 434.0081214904785, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "u'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:30,338", - "created": 1614535170.338687, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 338.6869430541992, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 434.6179962158203, - "thread": 139999130797824, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:30,339", - "created": 1614535170.339048, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 339.047908782959, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 434.9789619445801, - "thread": 139999130797824, - "threadName": "Thread-1" - } - ], - "msecs": 509.16504859924316, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 605.0961017608643, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.17011713981628418 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:30,510", - "created": 1614535170.51045, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:30,509", - "created": 1614535170.509915, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 509.9151134490967, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 605.8461666107178, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:30,510", - "created": 1614535170.510203, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 510.20288467407227, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 606.1339378356934, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 510.4498863220215, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 606.3809394836426, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024700164794921875 - }, - { - "args": [ - "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:30,511", - "created": 1614535170.511355, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:30,510", - "created": 1614535170.51083, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", - "module": "test", - "msecs": 510.8299255371094, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 606.7609786987305, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:30,511", - "created": 1614535170.511074, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", - "module": "test", - "msecs": 511.0740661621094, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 607.0051193237305, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 511.354923248291, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 607.2859764099121, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002808570861816406 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:30,713", - "created": 1614535170.713546, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "send_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 59, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:30,511", - "created": 1614535170.511903, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 511.9030475616455, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 607.8341007232666, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:30,535", - "created": 1614535170.535478, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 535.4781150817871, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 631.4091682434082, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:30,536", - "created": 1614535170.53608, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 536.0798835754395, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 632.0109367370605, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,536", - "created": 1614535170.536335, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 536.3349914550781, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 632.2660446166992, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:30,536", - "created": 1614535170.53655, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 536.5500450134277, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 632.4810981750488, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,536", - "created": 1614535170.536799, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 536.7989540100098, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 632.7300071716309, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,537", - "created": 1614535170.537013, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 537.013053894043, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 632.9441070556641, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,537", - "created": 1614535170.537266, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 537.2660160064697, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 633.1970691680908, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,537", - "created": 1614535170.537449, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 537.4488830566406, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 633.3799362182617, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,537", - "created": 1614535170.537724, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 537.7240180969238, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 633.6550712585449, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,537", - "created": 1614535170.537951, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 537.9509925842285, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 633.8820457458496, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:30,538", - "created": 1614535170.538382, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 538.3820533752441, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 634.3131065368652, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:30,538", - "created": 1614535170.538685, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 538.6850833892822, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 634.6161365509033, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,538", - "created": 1614535170.538964, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 538.964033126831, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 634.8950862884521, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,539", - "created": 1614535170.539153, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 539.1530990600586, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 635.0841522216797, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,539", - "created": 1614535170.539389, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 539.38889503479, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 635.3199481964111, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:30,539", - "created": 1614535170.539569, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 539.5689010620117, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 635.4999542236328, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" - ], - "asctime": "2021-02-28 18:59:30,540", - "created": 1614535170.54001, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "stp", - "msecs": 540.0099754333496, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 635.9410285949707, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "u'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:30,540", - "created": 1614535170.540565, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 540.565013885498, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 636.4960670471191, - "thread": 139999122405120, - "threadName": "Thread-2" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:30,540", - "created": 1614535170.540896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 540.895938873291, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 636.8269920349121, - "thread": 139999122405120, - "threadName": "Thread-2" - } - ], - "msecs": 713.5460376739502, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 809.4770908355713, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.17265009880065918 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:30,714", - "created": 1614535170.714734, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:30,714", - "created": 1614535170.714256, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 714.2560482025146, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 810.1871013641357, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:30,714", - "created": 1614535170.714513, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 714.5130634307861, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 810.4441165924072, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 714.7340774536133, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 810.6651306152344, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00022101402282714844 - }, - { - "args": [ - "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:30,715", - "created": 1614535170.715521, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:30,715", - "created": 1614535170.715085, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", - "module": "test", - "msecs": 715.0850296020508, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 811.0160827636719, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:30,715", - "created": 1614535170.715305, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", - "module": "test", - "msecs": 715.3050899505615, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 811.2361431121826, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 715.5210971832275, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 811.4521503448486, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00021600723266601562 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.75742506980896, - "time_finished": "2021-02-28 18:59:30,715", - "time_start": "2021-02-28 18:59:29,958" - }, - "_4w4SsE1DEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:32,772", - "created": 1614535172.772989, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 36, - "message": "_4w4SsE1DEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 772.98903465271, - "msg": "_4w4SsE1DEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2868.920087814331, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:32,788", - "created": 1614535172.788691, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:32,774", - "created": 1614535172.774362, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 774.3620872497559, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2870.293140411377, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:32,775", - "created": 1614535172.775803, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 775.8030891418457, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2871.734142303467, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:32,776", - "created": 1614535172.776202, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 776.2019634246826, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2872.1330165863037, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:32,776", - "created": 1614535172.776764, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 776.763916015625, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2872.694969177246, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:32,777", - "created": 1614535172.77708, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 777.0800590515137, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2873.0111122131348, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:32,777", - "created": 1614535172.77743, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 777.4300575256348, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2873.361110687256, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:32,777", - "created": 1614535172.777728, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 777.7280807495117, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2873.659133911133, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:32,778", - "created": 1614535172.778295, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 778.2950401306152, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2874.2260932922363, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:32,778", - "created": 1614535172.778596, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 778.5959243774414, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2874.5269775390625, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:32,778", - "created": 1614535172.778902, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 778.9020538330078, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2874.833106994629, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:32,779", - "created": 1614535172.779154, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 779.1540622711182, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2875.0851154327393, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:32,779", - "created": 1614535172.779384, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 779.3838977813721, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2875.314950942993, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:32,779", - "created": 1614535172.779605, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 779.6049118041992, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2875.5359649658203, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:32,779", - "created": 1614535172.779849, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 779.8490524291992, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2875.7801055908203, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:32,780", - "created": 1614535172.780147, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 780.1470756530762, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2876.0781288146973, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:32,780", - "created": 1614535172.78082, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 780.8198928833008, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2876.750946044922, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:32,781", - "created": 1614535172.78121, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 781.2099456787109, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2877.140998840332, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:32,781", - "created": 1614535172.781536, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 781.5361022949219, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2877.467155456543, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:32,782", - "created": 1614535172.782259, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 782.2589874267578, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2878.190040588379, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:32,782", - "created": 1614535172.782501, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 782.5009822845459, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2878.432035446167, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:32,782", - "created": 1614535172.782677, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 782.6769351959229, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2878.607988357544, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:32,782", - "created": 1614535172.782919, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 782.9189300537109, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2878.849983215332, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:32,783", - "created": 1614535172.783168, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 783.1680774688721, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2879.099130630493, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:32,783", - "created": 1614535172.783898, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 783.898115158081, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2879.829168319702, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:32,784", - "created": 1614535172.784183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 784.1830253601074, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2880.1140785217285, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:32,784", - "created": 1614535172.784479, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 784.4789028167725, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2880.4099559783936, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:32,784", - "created": 1614535172.784703, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 784.7030162811279, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2880.634069442749, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:32,785", - "created": 1614535172.785509, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 785.5091094970703, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2881.4401626586914, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:32,785", - "created": 1614535172.785767, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 785.7670783996582, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2881.6981315612793, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:32,786", - "created": 1614535172.786075, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 786.0751152038574, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2882.0061683654785, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:32,786", - "created": 1614535172.786408, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 786.4079475402832, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2882.3390007019043, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:32,786", - "created": 1614535172.786607, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 786.607027053833, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2882.538080215454, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:32,786", - "created": 1614535172.786816, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 786.815881729126, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2882.746934890747, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:32,786", - "created": 1614535172.786985, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 786.984920501709, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2882.91597366333, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:32,787", - "created": 1614535172.787184, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 787.1840000152588, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2883.11505317688, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:32,787", - "created": 1614535172.787391, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 787.390947341919, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2883.32200050354, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:32,787", - "created": 1614535172.787583, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 787.5831127166748, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2883.514165878296, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:32,787", - "created": 1614535172.787772, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 787.7719402313232, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2883.7029933929443, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:32,787", - "created": 1614535172.787986, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 787.9860401153564, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2883.9170932769775, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:32,788", - "created": 1614535172.788187, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 788.1870269775391, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2884.11808013916, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:32,788", - "created": 1614535172.788409, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 788.4089946746826, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2884.3400478363037, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:32,788", - "created": 1614535172.788514, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 788.5138988494873, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2884.4449520111084, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:32,788", - "created": 1614535172.788601, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 788.6009216308594, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2884.5319747924805, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 788.6910438537598, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2884.622097015381, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 9.012222290039062e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:33,133", - "created": 1614535173.13317, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:32,788", - "created": 1614535172.788876, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 788.8760566711426, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2884.8071098327637, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:32,788", - "created": 1614535172.788973, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 788.9730930328369, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2884.904146194458, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:32,789", - "created": 1614535172.789061, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 789.0610694885254, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2884.9921226501465, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,789", - "created": 1614535172.789207, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 789.2069816589355, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2885.1380348205566, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:32,789", - "created": 1614535172.78951, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 789.5100116729736, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2885.4410648345947, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:32,789", - "created": 1614535172.789623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 789.6230220794678, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2885.554075241089, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:32,789", - "created": 1614535172.789732, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 789.7319793701172, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2885.6630325317383, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,790", - "created": 1614535172.790452, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 790.4520034790039, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2886.383056640625, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,790", - "created": 1614535172.790669, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 790.6689643859863, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2886.6000175476074, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,790", - "created": 1614535172.790772, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 790.7719612121582, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2886.7030143737793, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,790", - "created": 1614535172.790854, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 790.8539772033691, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2886.7850303649902, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,790", - "created": 1614535172.790958, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 790.9579277038574, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2886.8889808654785, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791032, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 791.032075881958, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2886.963129043579, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791132, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 791.1319732666016, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.0630264282227, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791203, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 791.2030220031738, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.134075164795, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.79129, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 791.2900447845459, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.221097946167, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791367, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 791.3670539855957, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.298107147217, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791463, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 791.4628982543945, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.3939514160156, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791535, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 791.5349006652832, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.4659538269043, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791653, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 791.6529178619385, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.5839710235596, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791749, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 791.7490005493164, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.6800537109375, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791826, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 791.8260097503662, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.7570629119873, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,791", - "created": 1614535172.791894, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 791.8939590454102, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.8250122070312, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:32,792", - "created": 1614535172.792034, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 792.0339107513428, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2887.964963912964, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,792", - "created": 1614535172.792246, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 792.2461032867432, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2888.1771564483643, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:32,792", - "created": 1614535172.792349, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 792.349100112915, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2888.280153274536, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,792", - "created": 1614535172.792489, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 792.4890518188477, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2888.4201049804688, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,794", - "created": 1614535172.794473, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 794.4729328155518, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2890.403985977173, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,794", - "created": 1614535172.794737, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 794.7371006011963, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2890.6681537628174, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,794", - "created": 1614535172.794845, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 794.8451042175293, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2890.7761573791504, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,794", - "created": 1614535172.794921, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 794.9209213256836, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2890.8519744873047, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795016, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 795.0160503387451, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2890.947103500366, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795084, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 795.0839996337891, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.01505279541, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795175, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 795.1750755310059, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.106128692627, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795241, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 795.241117477417, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.172170639038, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795322, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 795.3219413757324, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.2529945373535, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795392, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 795.3920364379883, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.3230895996094, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795488, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 795.4881191253662, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.4191722869873, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795553, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 795.5529689788818, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.484022140503, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.79567, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 795.6700325012207, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.601085662842, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795754, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 795.7539558410645, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.6850090026855, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.795827, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 795.8269119262695, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.7579650878906, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,795", - "created": 1614535172.79589, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 795.8900928497314, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.8211460113525, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:32,796", - "created": 1614535172.796046, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 796.0460186004639, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2891.977071762085, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,796", - "created": 1614535172.796264, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 796.2639331817627, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2892.194986343384, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:32,796", - "created": 1614535172.796381, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 796.3809967041016, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2892.3120498657227, - "thread": 139998863017728, - "threadName": "Thread-8" - } - ], - "msecs": 133.16988945007324, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3229.1009426116943, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3367888927459717 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:33,133", - "created": 1614535173.13393, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "automatic_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "Identical secrets set and automatic authentification", - "module": "test_communication", - "moduleLogger": [], - "msecs": 133.92996788024902, - "msg": "Identical secrets set and automatic authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3229.86102104187, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:33,134", - "created": 1614535173.134788, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:33,134", - "created": 1614535173.134339, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): False ()", - "module": "test", - "msecs": 134.3390941619873, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3230.2701473236084, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:33,134", - "created": 1614535173.134576, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = False ()", - "module": "test", - "msecs": 134.57608222961426, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3230.5071353912354, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 134.78803634643555, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3230.7190895080566, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00021195411682128906 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:33,135", - "created": 1614535173.13553, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:33,135", - "created": 1614535173.135136, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): False ()", - "module": "test", - "msecs": 135.13588905334473, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3231.066942214966, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:33,135", - "created": 1614535173.135332, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = False ()", - "module": "test", - "msecs": 135.3321075439453, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3231.2631607055664, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 135.5299949645996, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3231.4610481262207, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00019788742065429688 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:35,490", - "created": 1614535175.490948, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "automatic_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 139, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:33,135", - "created": 1614535173.135863, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 135.8630657196045, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3231.7941188812256, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:33,136", - "created": 1614535173.136115, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 136.11507415771484, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3232.046127319336, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:33,136", - "created": 1614535173.13633, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 136.32988929748535, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3232.2609424591064, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:33,136", - "created": 1614535173.136552, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 136.552095413208, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3232.483148574829, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:33,136", - "created": 1614535173.13681, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 136.8100643157959, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3232.741117477417, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:33,137", - "created": 1614535173.137047, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 137.04705238342285, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3232.978105545044, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:33,137", - "created": 1614535173.13729, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 137.29000091552734, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3233.2210540771484, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:33,137", - "created": 1614535173.137725, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 137.7251148223877, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3233.656167984009, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:33,138", - "created": 1614535173.13885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 138.84997367858887, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3234.78102684021, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:33,158", - "created": 1614535173.15867, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 158.66994857788086, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3254.601001739502, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:33,159", - "created": 1614535173.159298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 159.29794311523438, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3255.2289962768555, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:33,159", - "created": 1614535173.159556, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 159.55591201782227, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3255.4869651794434, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:33,159", - "created": 1614535173.159768, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 159.76810455322266, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3255.6991577148438, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:33,160", - "created": 1614535173.160015, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 160.01510620117188, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3255.946159362793, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:33,160", - "created": 1614535173.16037, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 160.3701114654541, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3256.301164627075, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:33,160", - "created": 1614535173.160717, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 160.71701049804688, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3256.648063659668, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:33,160", - "created": 1614535173.160956, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 160.95590591430664, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3256.8869590759277, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:33,161", - "created": 1614535173.161249, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 161.24892234802246, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3257.1799755096436, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:33,161", - "created": 1614535173.161495, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 161.49497032165527, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3257.4260234832764, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:33,161", - "created": 1614535173.161796, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 161.79609298706055, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3257.7271461486816, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:33,161", - "created": 1614535173.161996, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 161.99588775634766, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3257.9269409179688, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:33,162", - "created": 1614535173.162507, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 162.5070571899414, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3258.4381103515625, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:33,162", - "created": 1614535173.162815, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 162.81509399414062, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3258.7461471557617, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:33,163", - "created": 1614535173.163064, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 163.06400299072266, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3258.9950561523438, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:33,163", - "created": 1614535173.163252, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 163.2521152496338, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3259.183168411255, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:33,163", - "created": 1614535173.163584, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 163.58399391174316, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3259.5150470733643, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:33,164", - "created": 1614535173.164027, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 164.02697563171387, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3259.958028793335, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:33,164", - "created": 1614535173.164261, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 164.2611026763916, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3260.1921558380127, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:33,164", - "created": 1614535173.164612, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 164.6120548248291, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 3260.54310798645, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:35,146", - "created": 1614535175.146334, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 146.3339328765869, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5242.264986038208, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:35,146", - "created": 1614535175.146935, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 146.93498611450195, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5242.866039276123, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:35,147", - "created": 1614535175.147396, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 147.39608764648438, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5243.3271408081055, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:35,171", - "created": 1614535175.171017, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 171.01693153381348, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5266.947984695435, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:35,171", - "created": 1614535175.171904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 171.9040870666504, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5267.8351402282715, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:35,172", - "created": 1614535175.172661, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 172.66106605529785, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5268.592119216919, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,173", - "created": 1614535175.173076, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 173.07591438293457, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5269.006967544556, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,173", - "created": 1614535175.173357, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 173.3570098876953, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5269.288063049316, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:35,173", - "created": 1614535175.173993, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 173.99311065673828, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5269.924163818359, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,174", - "created": 1614535175.174383, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 174.38292503356934, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5270.31397819519, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,174", - "created": 1614535175.174656, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 174.65591430664062, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5270.586967468262, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,174", - "created": 1614535175.174986, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 174.9858856201172, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5270.916938781738, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,175", - "created": 1614535175.175235, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 175.23503303527832, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5271.166086196899, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,175", - "created": 1614535175.175563, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 175.56309700012207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5271.494150161743, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,175", - "created": 1614535175.175809, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 175.80890655517578, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5271.739959716797, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,176", - "created": 1614535175.1761, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 176.1000156402588, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5272.03106880188, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,176", - "created": 1614535175.176317, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 176.3169765472412, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5272.248029708862, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,176", - "created": 1614535175.176627, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 176.62692070007324, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5272.557973861694, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,176", - "created": 1614535175.176844, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 176.84388160705566, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5272.774934768677, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,177", - "created": 1614535175.177105, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 177.10494995117188, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5273.036003112793, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,177", - "created": 1614535175.177734, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 177.7338981628418, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5273.664951324463, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,178", - "created": 1614535175.178274, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 178.27391624450684, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5274.204969406128, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,178", - "created": 1614535175.178585, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 178.58505249023438, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5274.5161056518555, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,178", - "created": 1614535175.178791, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 178.79104614257812, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5274.722099304199, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,178", - "created": 1614535175.178971, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 178.9710521697998, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5274.902105331421, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,179", - "created": 1614535175.179133, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 179.13293838500977, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5275.063991546631, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,179", - "created": 1614535175.179311, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 179.31103706359863, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5275.24209022522, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,179", - "created": 1614535175.179498, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 179.49795722961426, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5275.429010391235, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:35,179", - "created": 1614535175.179726, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 179.72588539123535, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5275.656938552856, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,179", - "created": 1614535175.179857, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 179.8570156097412, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5275.788068771362, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:35,180", - "created": 1614535175.180117, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 180.1168918609619, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5276.047945022583, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,180", - "created": 1614535175.18029, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 180.28998374938965, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5276.221036911011, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:35,180", - "created": 1614535175.180438, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 180.43804168701172, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5276.369094848633, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,180", - "created": 1614535175.180601, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 180.6008815765381, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5276.531934738159, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,180", - "created": 1614535175.18089, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 180.89008331298828, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5276.821136474609, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,181", - "created": 1614535175.181017, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 181.0169219970703, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5276.947975158691, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,181", - "created": 1614535175.18113, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 181.12993240356445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5277.060985565186, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,181", - "created": 1614535175.181226, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 181.22601509094238, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5277.1570682525635, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(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 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 30 7d 10 4d cd 55" - ], - "asctime": "2021-02-28 18:59:35,181", - "created": 1614535175.181428, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 30 7d 10 4d cd 55", - "module": "stp", - "msecs": 181.4279556274414, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5277.3590087890625, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:35,181", - "created": 1614535175.181624, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 181.6239356994629, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5277.554988861084, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 18:59:35,181", - "created": 1614535175.181775, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 181.77509307861328, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5277.706146240234, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'b00f0c25f2f10414208875b9ac6f524a80f2764f6936bb766019b5c96a867462'" - ], - "asctime": "2021-02-28 18:59:35,181", - "created": 1614535175.181944, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'b00f0c25f2f10414208875b9ac6f524a80f2764f6936bb766019b5c96a867462'\"", - "module": "__init__", - "msecs": 181.9438934326172, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5277.874946594238, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 30 66 30 63 32 35 66 32 66 31 30 34 31 34 32 30 38" - ], - "asctime": "2021-02-28 18:59:35,183", - "created": 1614535175.183058, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 30 66 30 63 32 35 66 32 66 31 30 34 31 34 32 30 38", - "module": "__init__", - "msecs": 183.0580234527588, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5278.98907661438, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 30 66 30 63 32 35 66 32 66 31 30 34 31 34 32 30 38" - ], - "asctime": "2021-02-28 18:59:35,183", - "created": 1614535175.183231, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 62 30 30 66 30 63 32 35 66 32 66 31 30 34 31 34 32 30 38", - "module": "__init__", - "msecs": 183.23111534118652, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5279.162168502808, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,183", - "created": 1614535175.183337, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 183.33697319030762, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5279.268026351929, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,183", - "created": 1614535175.183442, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.4421157836914, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5279.3731689453125, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,183", - "created": 1614535175.183574, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 183.57396125793457, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5279.505014419556, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,183", - "created": 1614535175.183668, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.6678981781006, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5279.598951339722, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,183", - "created": 1614535175.183803, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 183.80308151245117, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5279.734134674072, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,183", - "created": 1614535175.183902, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.90202522277832, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5279.833078384399, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,184", - "created": 1614535175.184026, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 184.02600288391113, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5279.957056045532, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,184", - "created": 1614535175.184119, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 184.11898612976074, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5280.050039291382, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(64): 38 37 35 62 39 61 63 36 66 35 32 34 61 38 30 66 32 37 36 34 66 36 39 33 36 62 62 37 36 36 30 31 39 62 35 63 39 36 61 38 36 37 34 36 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 12 06" - ], - "asctime": "2021-02-28 18:59:35,184", - "created": 1614535175.184403, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 38 37 35 62 39 61 63 36 66 35 32 34 61 38 30 66 32 37 36 34 66 36 39 33 36 62 62 37 36 36 30 31 39 62 35 63 39 36 61 38 36 37 34 36 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 12 06", - "module": "__init__", - "msecs": 184.4029426574707, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5280.333995819092, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 38 37 35 62 39 61 63 36 66 35 32 34 61 38 30 66 32 37 36 34 66 36 39 33 36 62 62 37 36 36 30 31 39 62 35 63 39 36 61 38 36 37 34 36 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 12 06" - ], - "asctime": "2021-02-28 18:59:35,184", - "created": 1614535175.184606, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 38 37 35 62 39 61 63 36 66 35 32 34 61 38 30 66 32 37 36 34 66 36 39 33 36 62 62 37 36 36 30 31 39 62 35 63 39 36 61 38 36 37 34 36 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 12 06", - "module": "__init__", - "msecs": 184.60607528686523, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5280.537128448486, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,184", - "created": 1614535175.184869, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 184.86905097961426, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5280.800104141235, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,184", - "created": 1614535175.184972, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 184.97204780578613, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5280.903100967407, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(4): b7 10 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,185", - "created": 1614535175.185078, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (4): b7 10 3a 3e", - "module": "__init__", - "msecs": 185.07790565490723, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5281.008958816528, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(4): b7 10 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,185", - "created": 1614535175.18516, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (4): b7 10 3a 3e", - "module": "__init__", - "msecs": 185.15992164611816, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5281.090974807739, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,185", - "created": 1614535175.185231, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 185.23097038269043, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5281.1620235443115, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,185", - "created": 1614535175.185296, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 185.29605865478516, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5281.227111816406, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 64 61 74 61 22 3a 20 22 62 30 30 66 30 63 32 35 66 32 66 31 30 34 31 34 32 30 38 38 37 35 62 39 61 63 36 66 35 32 34 61 38 30 66 32 37 36 34 66 36 39 33 36 62 62 37 36 36 30 31 39 62 35 63 39 36 61 38 36 37 34 36 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 12 06 b7 10" - ], - "asctime": "2021-02-28 18:59:35,185", - "created": 1614535175.185514, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 64 61 74 61 22 3a 20 22 62 30 30 66 30 63 32 35 66 32 66 31 30 34 31 34 32 30 38 38 37 35 62 39 61 63 36 66 35 32 34 61 38 30 66 32 37 36 34 66 36 39 33 36 62 62 37 36 36 30 31 39 62 35 63 39 36 61 38 36 37 34 36 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 12 06 b7 10", - "module": "stp", - "msecs": 185.51397323608398, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5281.445026397705, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: seed", - "status: okay", - "u'b00f0c25f2f10414208875b9ac6f524a80f2764f6936bb766019b5c96a867462'" - ], - "asctime": "2021-02-28 18:59:35,185", - "created": 1614535175.185686, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'b00f0c25f2f10414208875b9ac6f524a80f2764f6936bb766019b5c96a867462'\"", - "module": "__init__", - "msecs": 185.6861114501953, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5281.617164611816, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "__authentificate_create_key__" - ], - "asctime": "2021-02-28 18:59:35,185", - "created": 1614535175.185779, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", - "module": "__init__", - "msecs": 185.77909469604492, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5281.710147857666, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: key", - "status: okay", - "'2d36bfd165df1f4cce431f464a41856ee33abf7de0eee89466b393958a382e48acdfac5d3ca31194ddf4e1ab1ce43ae95834641f28d15dfb8a526734ffa1fa8d'" - ], - "asctime": "2021-02-28 18:59:35,185", - "created": 1614535175.185917, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'2d36bfd165df1f4cce431f464a41856ee33abf7de0eee89466b393958a382e48acdfac5d3ca31194ddf4e1ab1ce43ae95834641f28d15dfb8a526734ffa1fa8d'\"", - "module": "__init__", - "msecs": 185.91690063476562, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5281.847953796387, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 64 33 36 62 66 64 31 36 35 64 66 31 66 34 63 63 65 34" - ], - "asctime": "2021-02-28 18:59:35,187", - "created": 1614535175.187099, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 64 33 36 62 66 64 31 36 35 64 66 31 66 34 63 63 65 34", - "module": "__init__", - "msecs": 187.09897994995117, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5283.030033111572, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 64 33 36 62 66 64 31 36 35 64 66 31 66 34 63 63 65 34" - ], - "asctime": "2021-02-28 18:59:35,187", - "created": 1614535175.187276, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 64 33 36 62 66 64 31 36 35 64 66 31 66 34 63 63 65 34", - "module": "__init__", - "msecs": 187.27588653564453, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5283.206939697266, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,187", - "created": 1614535175.187387, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 187.38698959350586, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5283.318042755127, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,187", - "created": 1614535175.187485, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 187.4849796295166, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5283.416032791138, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,187", - "created": 1614535175.187614, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 187.61396408081055, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5283.545017242432, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,187", - "created": 1614535175.187708, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 187.70790100097656, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5283.638954162598, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,187", - "created": 1614535175.187848, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 187.84809112548828, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5283.779144287109, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,187", - "created": 1614535175.187941, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 187.9410743713379, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5283.872127532959, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,188", - "created": 1614535175.188072, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 188.07196617126465, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5284.003019332886, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,188", - "created": 1614535175.188165, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 188.16494941711426, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5284.096002578735, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(64): 33 31 66 34 36 34 61 34 31 38 35 36 65 65 33 33 61 62 66 37 64 65 30 65 65 65 38 39 34 36 36 62 33 39 33 39 35 38 61 33 38 32 65 34 38 61 63 64 66 61 63 35 64 33 63 61 33 31 31 39 34 64 64 66" - ], - "asctime": "2021-02-28 18:59:35,188", - "created": 1614535175.188452, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 33 31 66 34 36 34 61 34 31 38 35 36 65 65 33 33 61 62 66 37 64 65 30 65 65 65 38 39 34 36 36 62 33 39 33 39 35 38 61 33 38 32 65 34 38 61 63 64 66 61 63 35 64 33 63 61 33 31 31 39 34 64 64 66", - "module": "__init__", - "msecs": 188.45200538635254, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5284.383058547974, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 33 31 66 34 36 34 61 34 31 38 35 36 65 65 33 33 61 62 66 37 64 65 30 65 65 65 38 39 34 36 36 62 33 39 33 39 35 38 61 33 38 32 65 34 38 61 63 64 66 61 63 35 64 33 63 61 33 31 31 39 34 64 64 66" - ], - "asctime": "2021-02-28 18:59:35,188", - "created": 1614535175.188658, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 33 31 66 34 36 34 61 34 31 38 35 36 65 65 33 33 61 62 66 37 64 65 30 65 65 65 38 39 34 36 36 62 33 39 33 39 35 38 61 33 38 32 65 34 38 61 63 64 66 61 63 35 64 33 63 61 33 31 31 39 34 64 64 66", - "module": "__init__", - "msecs": 188.6579990386963, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5284.589052200317, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(64): 34 65 31 61 62 31 63 65 34 33 61 65 39 35 38 33 34 36 34 31 66 32 38 64 31 35 64 66 62 38 61 35 32 36 37 33 34 66 66 61 31 66 61 38 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d fa d6" - ], - "asctime": "2021-02-28 18:59:35,189", - "created": 1614535175.189069, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 34 65 31 61 62 31 63 65 34 33 61 65 39 35 38 33 34 36 34 31 66 32 38 64 31 35 64 66 62 38 61 35 32 36 37 33 34 66 66 61 31 66 61 38 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d fa d6", - "module": "__init__", - "msecs": 189.06903266906738, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5285.0000858306885, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 34 65 31 61 62 31 63 65 34 33 61 65 39 35 38 33 34 36 34 31 66 32 38 64 31 35 64 66 62 38 61 35 32 36 37 33 34 66 66 61 31 66 61 38 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d fa d6" - ], - "asctime": "2021-02-28 18:59:35,189", - "created": 1614535175.189277, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 34 65 31 61 62 31 63 65 34 33 61 65 39 35 38 33 34 36 34 31 66 32 38 64 31 35 64 66 62 38 61 35 32 36 37 33 34 66 66 61 31 66 61 38 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d fa d6", - "module": "__init__", - "msecs": 189.27693367004395, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5285.207986831665, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,189", - "created": 1614535175.189586, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 189.58592414855957, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5285.516977310181, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,189", - "created": 1614535175.189721, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 189.72110748291016, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5285.652160644531, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(4): 99 71 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,189", - "created": 1614535175.189906, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (4): 99 71 3a 3e", - "module": "__init__", - "msecs": 189.90588188171387, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5285.836935043335, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(4): 99 71 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,190", - "created": 1614535175.190057, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (4): 99 71 3a 3e", - "module": "__init__", - "msecs": 190.05703926086426, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5285.988092422485, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,190", - "created": 1614535175.190155, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 190.155029296875, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5286.086082458496, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,190", - "created": 1614535175.190236, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 190.23609161376953, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5286.167144775391, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(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 30 2c 20 22 64 61 74 61 22 3a 20 22 32 64 33 36 62 66 64 31 36 35 64 66 31 66 34 63 63 65 34 33 31 66 34 36 34 61 34 31 38 35 36 65 65 33 33 61 62 66 37 64 65 30 65 65 65 38 39 34 36 36 62 33 39 33 39 35 38 61 33 38 32 65 34 38 61 63 64 66 61 63 35 64 33 63 61 33 31 31 39 34 64 64 66 34 65 31 61 62 31 63 65 34 33 61 65 39 35 38 33 34 36 34 31 66 32 38 64 31 35 64 66 62 38 61 35 32 36 37 33 34 66 66 61 31 66 61 38 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d fa d6 99 71" - ], - "asctime": "2021-02-28 18:59:35,190", - "created": 1614535175.190575, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 30 2c 20 22 64 61 74 61 22 3a 20 22 32 64 33 36 62 66 64 31 36 35 64 66 31 66 34 63 63 65 34 33 31 66 34 36 34 61 34 31 38 35 36 65 65 33 33 61 62 66 37 64 65 30 65 65 65 38 39 34 36 36 62 33 39 33 39 35 38 61 33 38 32 65 34 38 61 63 64 66 61 63 35 64 33 63 61 33 31 31 39 34 64 64 66 34 65 31 61 62 31 63 65 34 33 61 65 39 35 38 33 34 36 34 31 66 32 38 64 31 35 64 66 62 38 61 35 32 36 37 33 34 66 66 61 31 66 61 38 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d fa d6 99 71", - "module": "stp", - "msecs": 190.57488441467285, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5286.505937576294, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: key", - "status: okay", - "u'2d36bfd165df1f4cce431f464a41856ee33abf7de0eee89466b393958a382e48acdfac5d3ca31194ddf4e1ab1ce43ae95834641f28d15dfb8a526734ffa1fa8d'" - ], - "asctime": "2021-02-28 18:59:35,190", - "created": 1614535175.190769, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'2d36bfd165df1f4cce431f464a41856ee33abf7de0eee89466b393958a382e48acdfac5d3ca31194ddf4e1ab1ce43ae95834641f28d15dfb8a526734ffa1fa8d'\"", - "module": "__init__", - "msecs": 190.76895713806152, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5286.700010299683, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "__authentificate_check_key__" - ], - "asctime": "2021-02-28 18:59:35,190", - "created": 1614535175.190879, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", - "module": "__init__", - "msecs": 190.87910652160645, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5286.8101596832275, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:35,191", - "created": 1614535175.191033, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 191.03288650512695, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5286.963939666748, - "thread": 139998871410432, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" - ], - "asctime": "2021-02-28 18:59:35,192", - "created": 1614535175.192224, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", - "module": "__init__", - "msecs": 192.22402572631836, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5288.155078887939, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" - ], - "asctime": "2021-02-28 18:59:35,192", - "created": 1614535175.19248, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", - "module": "__init__", - "msecs": 192.48008728027344, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5288.4111404418945, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,192", - "created": 1614535175.192608, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 192.60811805725098, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5288.539171218872, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,192", - "created": 1614535175.192724, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 192.72398948669434, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5288.655042648315, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,192", - "created": 1614535175.192873, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 192.8730010986328, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5288.804054260254, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,192", - "created": 1614535175.192995, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 192.9950714111328, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5288.926124572754, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,193", - "created": 1614535175.193162, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 193.1619644165039, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5289.093017578125, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,193", - "created": 1614535175.193281, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 193.2809352874756, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5289.211988449097, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,193", - "created": 1614535175.193431, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 193.43090057373047, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5289.361953735352, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,193", - "created": 1614535175.193548, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 193.54796409606934, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5289.47901725769, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,193", - "created": 1614535175.193721, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 193.72105598449707, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5289.652109146118, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,193", - "created": 1614535175.193835, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 193.83502006530762, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5289.766073226929, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(6): 11 d3 26 78 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,194", - "created": 1614535175.194003, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", - "module": "__init__", - "msecs": 194.00310516357422, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5289.934158325195, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(6): 11 d3 26 78 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,194", - "created": 1614535175.194134, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", - "module": "__init__", - "msecs": 194.13399696350098, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5290.065050125122, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,194", - "created": 1614535175.194292, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 194.2920684814453, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5290.223121643066, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,194", - "created": 1614535175.194586, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 194.58603858947754, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5290.517091751099, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - "(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 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" - ], - "asctime": "2021-02-28 18:59:35,194", - "created": 1614535175.194753, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "stp", - "msecs": 194.75293159484863, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5290.68398475647, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:35,194", - "created": 1614535175.194954, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 194.95391845703125, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5290.884971618652, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-02-28 18:59:35,195", - "created": 1614535175.195074, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 195.07408142089844, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5291.0051345825195, - "thread": 139998863017728, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:35,195", - "created": 1614535175.195173, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentificate_process_feedback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 372, - "message": "prot-client: Got positive authentification feedback", - "module": "__init__", - "msecs": 195.1730251312256, - "msg": "%s Got positive authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5291.104078292847, - "thread": 139998863017728, - "threadName": "Thread-8" - } - ], - "msecs": 490.947961807251, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5586.879014968872, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.2957749366760254 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:35,492", - "created": 1614535175.492475, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "True", - "" - ], - "asctime": "2021-02-28 18:59:35,491", - "created": 1614535175.491939, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): True ()", - "module": "test", - "msecs": 491.9390678405762, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5587.870121002197, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "True", - "" - ], - "asctime": "2021-02-28 18:59:35,492", - "created": 1614535175.492227, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = True ()", - "module": "test", - "msecs": 492.22707748413086, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5588.158130645752, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 492.4750328063965, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5588.406085968018, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.000247955322265625 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:35,493", - "created": 1614535175.493395, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "True", - "" - ], - "asctime": "2021-02-28 18:59:35,492", - "created": 1614535175.492906, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): True ()", - "module": "test", - "msecs": 492.9060935974121, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5588.837146759033, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "True", - "" - ], - "asctime": "2021-02-28 18:59:35,493", - "created": 1614535175.493155, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = True ()", - "module": "test", - "msecs": 493.15500259399414, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5589.086055755615, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 493.3950901031494, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5589.3261432647705, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024008750915527344 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 2.7204060554504395, - "time_finished": "2021-02-28 18:59:35,493", - "time_start": "2021-02-28 18:59:32,772" - }, - "_7izDUEzYEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955369, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 27, - "message": "_7izDUEzYEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 955.3689956665039, - "msg": "_7izDUEzYEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.300048828125, - "testcaseLogger": [ - { - "args": [ - "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955467, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 10, - "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 955.4669857025146, - "msg": "Creating empty message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.39803886413574, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'service_id'" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955653, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "service_id is part of the message object is correct ('service_id' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "service_id is part of the message object", - "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", - "" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955555, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (service_id is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", - "module": "test", - "msecs": 955.5549621582031, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.48601531982422, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "service_id is part of the message object", - "'service_id'" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955606, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (service_id is part of the message object): 'service_id' in result", - "module": "test", - "msecs": 955.6059837341309, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.53703689575195, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 955.6529521942139, - "msg": "service_id is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.58400535583496, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 - }, - { - "args": [ - "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955746, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 955.7459354400635, - "msg": "Creating a maximum message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.67698860168457, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'service_id'" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955928, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "service_id is part of the message object is correct ('service_id' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "service_id is part of the message object", - "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", - "" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955834, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (service_id is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", - "module": "test", - "msecs": 955.833911895752, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.76496505737305, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "service_id is part of the message object", - "'service_id'" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955883, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (service_id is part of the message object): 'service_id' in result", - "module": "test", - "msecs": 955.8830261230469, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.81407928466797, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 955.9280872344971, - "msg": "service_id is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.859140396118164, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 - }, - { - "args": [ - "'SID'", - "" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956118, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Content in message object for service_id is correct (Content 'SID' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Content in message object for service_id", - "'SID'", - "" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956018, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Content in message object for service_id): 'SID' ()", - "module": "test", - "msecs": 956.0179710388184, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.94902420043945, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Content in message object for service_id", - "'SID'", - "" - ], - "asctime": "2021-02-28 18:59:29,956", - "created": 1614535169.956067, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Content in message object for service_id): result = 'SID' ()", - "module": "test", - "msecs": 956.0670852661133, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.998138427734375, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 956.118106842041, - "msg": "Content in message object for service_id is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 52.04916000366211, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 5.1021575927734375e-05 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0007491111755371094, - "time_finished": "2021-02-28 18:59:29,956", - "time_start": "2021-02-28 18:59:29,955" - }, - "_AlIUwEzZEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957181, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 29, - "message": "_AlIUwEzZEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 957.1809768676758, - "msg": "_AlIUwEzZEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.112030029296875, - "testcaseLogger": [ - { - "args": [ - "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957279, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 10, - "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 957.2789669036865, - "msg": "Creating empty message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.21002006530762, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'data'" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957463, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "data is part of the message object is correct ('data' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "data is part of the message object", - "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", - "" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957367, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (data is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", - "module": "test", - "msecs": 957.366943359375, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.297996520996094, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "data is part of the message object", - "'data'" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957416, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (data is part of the message object): 'data' in result", - "module": "test", - "msecs": 957.4160575866699, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.347110748291016, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 957.4630260467529, - "msg": "data is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.39407920837402, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 - }, - { - "args": [ - "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957556, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 957.5560092926025, - "msg": "Creating a maximum message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.48706245422363, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'data'" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957742, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "data is part of the message object is correct ('data' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "data is part of the message object", - "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", - "" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957641, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (data is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", - "module": "test", - "msecs": 957.6408863067627, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.57193946838379, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "data is part of the message object", - "'data'" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957698, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (data is part of the message object): 'data' in result", - "module": "test", - "msecs": 957.6981067657471, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.629159927368164, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 957.7419757843018, - "msg": "data is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.67302894592285, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.38690185546875e-05 - }, - { - "args": [ - "'D'", - "" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957933, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Content in message object for data is correct (Content 'D' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Content in message object for data", - "'D'", - "" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957837, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Content in message object for data): 'D' ()", - "module": "test", - "msecs": 957.8371047973633, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.768157958984375, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Content in message object for data", - "'D'", - "" - ], - "asctime": "2021-02-28 18:59:29,957", - "created": 1614535169.957885, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Content in message object for data): result = 'D' ()", - "module": "test", - "msecs": 957.8850269317627, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.81608009338379, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 957.9329490661621, - "msg": "Content in message object for data is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 53.8640022277832, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.792213439941406e-05 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0007519721984863281, - "time_finished": "2021-02-28 18:59:29,957", - "time_start": "2021-02-28 18:59:29,957" - }, - "_CZeooE0YEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:37,486", - "created": 1614535177.486455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 38, - "message": "_CZeooE0YEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 486.45496368408203, - "msg": "_CZeooE0YEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7582.386016845703, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.499494, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:37,488", - "created": 1614535177.488533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 488.53302001953125, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7584.464073181152, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:37,489", - "created": 1614535177.489972, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 489.9721145629883, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7585.903167724609, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:37,490", - "created": 1614535177.490391, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 490.3910160064697, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7586.322069168091, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:37,491", - "created": 1614535177.491283, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 491.2829399108887, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7587.21399307251, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:37,491", - "created": 1614535177.491625, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 491.6250705718994, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7587.5561237335205, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:37,492", - "created": 1614535177.492049, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 492.048978805542, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7587.980031967163, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:37,492", - "created": 1614535177.492509, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 492.5088882446289, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7588.43994140625, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:37,493", - "created": 1614535177.493305, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 493.304967880249, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7589.23602104187, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:37,493", - "created": 1614535177.493757, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 493.7570095062256, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7589.688062667847, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:37,494", - "created": 1614535177.494099, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 494.0989017486572, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7590.029954910278, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:37,494", - "created": 1614535177.494503, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 494.5030212402344, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7590.4340744018555, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:37,494", - "created": 1614535177.494774, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 494.77410316467285, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7590.705156326294, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:37,495", - "created": 1614535177.495085, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 495.0850009918213, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7591.016054153442, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:37,495", - "created": 1614535177.49535, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 495.3498840332031, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7591.280937194824, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:37,495", - "created": 1614535177.495613, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 495.61309814453125, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7591.544151306152, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:37,495", - "created": 1614535177.495875, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 495.87488174438477, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7591.805934906006, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:37,496", - "created": 1614535177.496098, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 496.0980415344238, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7592.029094696045, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:37,496", - "created": 1614535177.496323, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 496.3231086730957, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7592.254161834717, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:37,496", - "created": 1614535177.496564, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 496.5639114379883, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7592.494964599609, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:37,496", - "created": 1614535177.496818, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 496.81806564331055, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7592.749118804932, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:37,497", - "created": 1614535177.497089, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 497.0889091491699, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7593.019962310791, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:37,497", - "created": 1614535177.497294, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 497.29394912719727, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7593.225002288818, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:37,497", - "created": 1614535177.497422, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 497.4219799041748, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7593.353033065796, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:37,497", - "created": 1614535177.497693, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 497.6930618286133, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7593.624114990234, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:37,497", - "created": 1614535177.497791, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 497.791051864624, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7593.722105026245, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:37,497", - "created": 1614535177.497914, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 497.91407585144043, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7593.8451290130615, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498003, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 498.0030059814453, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7593.934059143066, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498089, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 498.089075088501, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.020128250122, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 498.17800521850586, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.109058380127, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498271, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 498.27098846435547, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.202041625977, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.49836, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 498.35991859436035, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.290971755981, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498444, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 498.4440803527832, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.375133514404, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498534, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 498.5339641571045, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.465017318726, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498612, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 498.6119270324707, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.542980194092, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498698, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 498.69799613952637, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.6290493011475, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498785, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 498.78501892089844, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.7160720825195, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498872, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 498.8720417022705, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.803094863892, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:37,498", - "created": 1614535177.498963, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 498.9631175994873, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.894170761108, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.499056, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 499.0561008453369, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7594.987154006958, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.499147, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 499.1469383239746, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7595.077991485596, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.499232, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 499.23205375671387, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7595.163106918335, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.499317, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 499.316930770874, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7595.247983932495, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.4994, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 499.39990043640137, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7595.3309535980225, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 499.4940757751465, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7595.425128936768, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 9.417533874511719e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:37,843", - "created": 1614535177.84396, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.499711, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 499.7110366821289, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7595.64208984375, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.49981, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 499.80998039245605, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7595.741033554077, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:37,499", - "created": 1614535177.499905, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 499.9051094055176, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7595.836162567139, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:37,500", - "created": 1614535177.500073, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 500.0729560852051, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7596.004009246826, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:37,500", - "created": 1614535177.50036, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 500.36001205444336, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7596.291065216064, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:37,500", - "created": 1614535177.500529, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 500.52905082702637, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7596.4601039886475, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:37,500", - "created": 1614535177.50068, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 500.67996978759766, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7596.611022949219, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:37,505", - "created": 1614535177.505234, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 505.2340030670166, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7601.165056228638, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:37,505", - "created": 1614535177.505535, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 505.5348873138428, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7601.465940475464, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,505", - "created": 1614535177.505687, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 505.68699836730957, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7601.618051528931, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:37,505", - "created": 1614535177.505798, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 505.7981014251709, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7601.729154586792, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,505", - "created": 1614535177.505916, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 505.9161186218262, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7601.847171783447, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,506", - "created": 1614535177.506005, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 506.00504875183105, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7601.936101913452, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,506", - "created": 1614535177.506138, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 506.1380863189697, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7602.069139480591, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,506", - "created": 1614535177.506223, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 506.2229633331299, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7602.154016494751, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,506", - "created": 1614535177.506332, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 506.3319206237793, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7602.2629737854, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,506", - "created": 1614535177.506414, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 506.41393661499023, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7602.344989776611, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,506", - "created": 1614535177.506533, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 506.5329074859619, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7602.463960647583, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,506", - "created": 1614535177.506792, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 506.7920684814453, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7602.723121643066, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,506", - "created": 1614535177.506944, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 506.943941116333, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7602.874994277954, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,507", - "created": 1614535177.507048, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 507.0478916168213, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7602.978944778442, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,507", - "created": 1614535177.50717, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 507.1699619293213, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7603.101015090942, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:37,507", - "created": 1614535177.507253, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 507.25293159484863, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7603.18398475647, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:37,507", - "created": 1614535177.507431, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 507.4310302734375, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7603.362083435059, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:37,507", - "created": 1614535177.507665, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 507.66491889953613, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7603.595972061157, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:37,507", - "created": 1614535177.507814, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 507.8139305114746, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7603.744983673096, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:37,507", - "created": 1614535177.507968, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 507.9679489135742, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7603.899002075195, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:37,508", - "created": 1614535177.50862, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 508.620023727417, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7604.551076889038, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:37,508", - "created": 1614535177.508792, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 508.7919235229492, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7604.72297668457, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,508", - "created": 1614535177.508881, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 508.8810920715332, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7604.812145233154, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:37,508", - "created": 1614535177.508969, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 508.9690685272217, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7604.900121688843, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509073, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 509.07301902770996, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.004072189331, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509156, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 509.1559886932373, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.087041854858, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509278, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 509.2780590057373, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.209112167358, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509364, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 509.36388969421387, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.294942855835, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509465, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 509.46497917175293, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.396032333374, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509555, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 509.5551013946533, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.486154556274, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509691, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 509.6909999847412, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.622053146362, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509782, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 509.782075881958, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.713129043579, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,509", - "created": 1614535177.509986, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 509.98592376708984, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7605.916976928711, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,510", - "created": 1614535177.510123, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 510.12301445007324, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7606.054067611694, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,510", - "created": 1614535177.510225, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 510.2250576019287, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7606.15611076355, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:37,510", - "created": 1614535177.51032, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 510.31994819641113, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7606.251001358032, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:37,510", - "created": 1614535177.510527, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 510.5268955230713, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7606.457948684692, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:37,510", - "created": 1614535177.51074, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 510.7400417327881, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7606.671094894409, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:37,510", - "created": 1614535177.510865, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 510.8649730682373, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7606.796026229858, - "thread": 139998284216064, - "threadName": "Thread-12" - } - ], - "msecs": 843.9600467681885, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7939.89109992981, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.33309507369995117 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:37,844", - "created": 1614535177.844655, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 201, - "message": "Identical secrets set", - "module": "test_communication", - "moduleLogger": [], - "msecs": 844.6550369262695, - "msg": "Identical secrets set", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7940.586090087891, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:38,146", - "created": 1614535178.146875, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 204, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:37,845", - "created": 1614535177.845116, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 845.1159000396729, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7941.046953201294, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "0.28705533596837945", - "17", - "34" - ], - "asctime": "2021-02-28 18:59:38,146", - "created": 1614535178.146418, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", - "module": "__init__", - "msecs": 146.41809463500977, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8242.34914779663, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 146.87490463256836, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8242.80595779419, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00045680999755859375 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:38,148", - "created": 1614535178.148056, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:38,147", - "created": 1614535178.147429, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): False ()", - "module": "test", - "msecs": 147.4289894104004, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8243.360042572021, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:38,147", - "created": 1614535178.147749, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = False ()", - "module": "test", - "msecs": 147.7489471435547, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8243.680000305176, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 148.0560302734375, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8243.987083435059, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003070831298828125 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,149", - "created": 1614535178.149128, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,148", - "created": 1614535178.14853, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): None ()", - "module": "test", - "msecs": 148.5300064086914, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8244.461059570312, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,148", - "created": 1614535178.14881, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = None ()", - "module": "test", - "msecs": 148.80990982055664, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8244.740962982178, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 149.12796020507812, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8245.0590133667, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003180503845214844 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:38,451", - "created": 1614535178.451327, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 210, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:38,149", - "created": 1614535178.149541, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 149.54090118408203, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8245.471954345703, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:38,450", - "created": 1614535178.450888, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 450.88791847229004, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8546.818971633911, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 451.3270854949951, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8547.258138656616, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0004391670227050781 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:38,452", - "created": 1614535178.452218, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:38,451", - "created": 1614535178.451777, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): False ()", - "module": "test", - "msecs": 451.77698135375977, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8547.70803451538, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:38,452", - "created": 1614535178.452011, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = False ()", - "module": "test", - "msecs": 452.0111083984375, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8547.942161560059, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 452.21805572509766, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8548.149108886719, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00020694732666015625 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,452", - "created": 1614535178.452941, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,452", - "created": 1614535178.452548, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 452.5480270385742, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8548.479080200195, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,452", - "created": 1614535178.452743, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 452.7430534362793, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8548.6741065979, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 452.9409408569336, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8548.871994018555, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00019788742065429688 - }, - { - "args": [ - 17, - 34 - ], - "asctime": "2021-02-28 18:59:38,453", - "created": 1614535178.453492, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 215, - "message": "Added msg1 to client whitelist (sid=17, did=34)", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "service: 17, data_id: 34" - ], - "asctime": "2021-02-28 18:59:38,453", - "created": 1614535178.45329, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", - "module": "__init__", - "msecs": 453.2899856567383, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8549.22103881836, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 453.4919261932373, - "msg": "Added msg1 to client whitelist (sid=%d, did=%d)", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8549.422979354858, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00020194053649902344 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:38,756", - "created": 1614535178.756404, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 218, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:38,453", - "created": 1614535178.453961, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 453.9608955383301, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8549.891948699951, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:38,477", - "created": 1614535178.477092, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 477.09202766418457, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8573.023080825806, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:38,477", - "created": 1614535178.477797, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 477.7970314025879, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8573.728084564209, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:38,478", - "created": 1614535178.478383, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 478.38306427001953, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8574.31411743164, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:38,478", - "created": 1614535178.478919, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 478.91902923583984, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8574.850082397461, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:38,479", - "created": 1614535178.479211, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 479.21109199523926, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8575.14214515686, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:38,479", - "created": 1614535178.479464, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 479.464054107666, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8575.395107269287, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:38,479", - "created": 1614535178.479925, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 479.92491722106934, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8575.85597038269, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:38,480", - "created": 1614535178.480197, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 480.1969528198242, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8576.128005981445, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:38,480", - "created": 1614535178.480536, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 480.53598403930664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8576.467037200928, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:38,480", - "created": 1614535178.480752, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 480.75199127197266, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8576.683044433594, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:38,481", - "created": 1614535178.481289, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 481.2889099121094, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8577.21996307373, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:38,481", - "created": 1614535178.481645, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 481.6451072692871, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8577.576160430908, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:38,482", - "created": 1614535178.48206, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 482.0599555969238, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8577.991008758545, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:38,482", - "created": 1614535178.482354, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 482.35392570495605, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8578.284978866577, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:38,482", - "created": 1614535178.48265, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 482.6500415802002, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8578.581094741821, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:38,482", - "created": 1614535178.482876, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 482.8760623931885, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8578.80711555481, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - "(88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" - ], - "asctime": "2021-02-28 18:59:38,483", - "created": 1614535178.483425, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "stp", - "msecs": 483.4249019622803, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8579.355955123901, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "u'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:38,483", - "created": 1614535178.483955, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 483.95490646362305, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8579.885959625244, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:38,484", - "created": 1614535178.484231, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 475, - "message": "prot-server: Authentification is required. Incomming message will be ignored.", - "module": "__init__", - "msecs": 484.23099517822266, - "msg": "%s Authentification is required. Incomming message will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8580.162048339844, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "0.28705533596837945", - "17", - "34" - ], - "asctime": "2021-02-28 18:59:38,755", - "created": 1614535178.755974, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", - "module": "__init__", - "msecs": 755.9740543365479, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8851.905107498169, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 756.403923034668, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8852.334976196289, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0004298686981201172 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:38,757", - "created": 1614535178.757385, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:38,756", - "created": 1614535178.756929, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 756.9289207458496, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8852.85997390747, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:38,757", - "created": 1614535178.757172, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 757.1721076965332, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8853.103160858154, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 757.3850154876709, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8853.316068649292, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002129077911376953 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,758", - "created": 1614535178.758211, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,757", - "created": 1614535178.757743, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): None ()", - "module": "test", - "msecs": 757.7428817749023, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8853.673934936523, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:38,757", - "created": 1614535178.757946, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = None ()", - "module": "test", - "msecs": 757.9460144042969, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8853.877067565918, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 758.2108974456787, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8854.1419506073, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00026488304138183594 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:39,060", - "created": 1614535179.060871, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 224, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:38,758", - "created": 1614535178.758675, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 758.6750984191895, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 8854.60615158081, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:39,060", - "created": 1614535179.060437, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 60.43696403503418, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9156.368017196655, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 60.87088584899902, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9156.80193901062, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00043392181396484375 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:39,061", - "created": 1614535179.061829, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:39,061", - "created": 1614535179.061347, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): False ()", - "module": "test", - "msecs": 61.347007751464844, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9157.278060913086, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:39,061", - "created": 1614535179.061583, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = False ()", - "module": "test", - "msecs": 61.58304214477539, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9157.514095306396, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 61.8290901184082, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9157.76014328003, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002460479736328125 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:39,062", - "created": 1614535179.062756, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:39,062", - "created": 1614535179.062152, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 62.15190887451172, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9158.082962036133, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:39,062", - "created": 1614535179.06243, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 62.42990493774414, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9158.360958099365, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 62.75606155395508, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9158.687114715576, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003261566162109375 - }, - { - "args": [ - 17, - 34 - ], - "asctime": "2021-02-28 18:59:39,063", - "created": 1614535179.063764, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 229, - "message": "Added msg1 to server whitelist (sid=17, did=34)", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 34" - ], - "asctime": "2021-02-28 18:59:39,063", - "created": 1614535179.063464, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", - "module": "__init__", - "msecs": 63.46392631530762, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9159.394979476929, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 63.764095306396484, - "msg": "Added msg1 to server whitelist (sid=%d, did=%d)", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9159.695148468018, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003001689910888672 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:39,265", - "created": 1614535179.265995, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 232, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:39,064", - "created": 1614535179.064245, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 64.24498558044434, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9160.176038742065, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:39,087", - "created": 1614535179.087125, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 87.12506294250488, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9183.056116104126, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:39,087", - "created": 1614535179.087722, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 87.7220630645752, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9183.653116226196, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,087", - "created": 1614535179.087977, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 87.97693252563477, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9183.907985687256, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:39,088", - "created": 1614535179.088191, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 88.19103240966797, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9184.122085571289, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,088", - "created": 1614535179.08858, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 88.57989311218262, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9184.510946273804, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,088", - "created": 1614535179.088867, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 88.8669490814209, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9184.798002243042, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,089", - "created": 1614535179.089249, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 89.2488956451416, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9185.179948806763, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,089", - "created": 1614535179.089506, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 89.50591087341309, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9185.436964035034, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,089", - "created": 1614535179.089912, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 89.91193771362305, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9185.842990875244, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,090", - "created": 1614535179.090181, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 90.18111228942871, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9186.11216545105, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:39,090", - "created": 1614535179.090805, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 90.8050537109375, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9186.736106872559, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:39,091", - "created": 1614535179.091341, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 91.34101867675781, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9187.272071838379, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,091", - "created": 1614535179.091775, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 91.77494049072266, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9187.705993652344, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,092", - "created": 1614535179.092151, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 92.15092658996582, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9188.081979751587, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,092", - "created": 1614535179.092387, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 92.38696098327637, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9188.318014144897, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:39,092", - "created": 1614535179.092587, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 92.58699417114258, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9188.518047332764, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - "(88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" - ], - "asctime": "2021-02-28 18:59:39,093", - "created": 1614535179.093063, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "stp", - "msecs": 93.0631160736084, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9188.99416923523, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "u'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:39,093", - "created": 1614535179.093576, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 93.57595443725586, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9189.507007598877, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:39,093", - "created": 1614535179.093923, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 93.92309188842773, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9189.854145050049, - "thread": 139998837839616, - "threadName": "Thread-11" - } - ], - "msecs": 265.9950256347656, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9361.926078796387, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.1720719337463379 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,267", - "created": 1614535179.267135, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,266", - "created": 1614535179.266656, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 266.65592193603516, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9362.586975097656, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,266", - "created": 1614535179.266912, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 266.91198348999023, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9362.843036651611, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 267.1349048614502, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9363.065958023071, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00022292137145996094 - }, - { - "args": [ - "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:39,267", - "created": 1614535179.267959, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:39,267", - "created": 1614535179.267503, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", - "module": "test", - "msecs": 267.503023147583, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9363.434076309204, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:39,267", - "created": 1614535179.267728, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", - "module": "test", - "msecs": 267.7280902862549, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9363.659143447876, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 267.9591178894043, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9363.890171051025, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00023102760314941406 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:39,570", - "created": 1614535179.570526, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 238, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:39,268", - "created": 1614535179.268362, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 268.36204528808594, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9364.293098449707, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:39,570", - "created": 1614535179.570037, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 570.0368881225586, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9665.96794128418, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 570.5258846282959, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9666.456937789917, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0004889965057373047 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:39,571", - "created": 1614535179.57139, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:39,570", - "created": 1614535179.570955, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): False ()", - "module": "test", - "msecs": 570.9550380706787, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9666.8860912323, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:39,571", - "created": 1614535179.571184, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = False ()", - "module": "test", - "msecs": 571.1839199066162, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9667.114973068237, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 571.38991355896, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9667.320966720581, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00020599365234375 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:39,572", - "created": 1614535179.572079, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:39,571", - "created": 1614535179.571703, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 571.7029571533203, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9667.634010314941, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:39,571", - "created": 1614535179.571896, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 571.8960762023926, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9667.827129364014, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 572.0789432525635, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9668.009996414185, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00018286705017089844 - }, - { - "args": [ - 17, - 35 - ], - "asctime": "2021-02-28 18:59:39,572", - "created": 1614535179.572836, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 244, - "message": "Added msg2 to client and server whitelist (sid=17, did=35)", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "service: 17, data_id: 35" - ], - "asctime": "2021-02-28 18:59:39,572", - "created": 1614535179.572418, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", - "module": "__init__", - "msecs": 572.4179744720459, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9668.349027633667, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: 17, data_id: 35" - ], - "asctime": "2021-02-28 18:59:39,572", - "created": 1614535179.572648, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", - "module": "__init__", - "msecs": 572.6480484008789, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9668.5791015625, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 572.8359222412109, - "msg": "Added msg2 to client and server whitelist (sid=%d, did=%d)", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9668.766975402832, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00018787384033203125 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:39,774", - "created": 1614535179.774826, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 247, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:39,573", - "created": 1614535179.573291, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 573.2910633087158, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9669.222116470337, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:39,596", - "created": 1614535179.596686, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 596.6858863830566, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9692.616939544678, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:39,597", - "created": 1614535179.597293, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 597.2929000854492, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9693.22395324707, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,597", - "created": 1614535179.59755, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 597.5499153137207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9693.480968475342, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:39,597", - "created": 1614535179.59781, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 597.8100299835205, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9693.741083145142, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,598", - "created": 1614535179.598104, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 598.1040000915527, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9694.035053253174, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,598", - "created": 1614535179.598296, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 598.2959270477295, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9694.22698020935, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,598", - "created": 1614535179.598546, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 598.546028137207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9694.477081298828, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,598", - "created": 1614535179.598728, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 598.7279415130615, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9694.658994674683, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,598", - "created": 1614535179.598987, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 598.9871025085449, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9694.918155670166, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,599", - "created": 1614535179.599215, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 599.215030670166, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9695.146083831787, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:39,599", - "created": 1614535179.599768, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 599.7679233551025, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9695.698976516724, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:39,600", - "created": 1614535179.600137, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 600.1369953155518, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9696.068048477173, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,600", - "created": 1614535179.600584, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 600.5840301513672, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9696.515083312988, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,600", - "created": 1614535179.600833, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 600.8329391479492, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9696.76399230957, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,601", - "created": 1614535179.601104, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 601.1040210723877, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9697.035074234009, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:39,601", - "created": 1614535179.601554, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 601.5539169311523, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9697.484970092773, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - "(88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" - ], - "asctime": "2021-02-28 18:59:39,602", - "created": 1614535179.602329, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "stp", - "msecs": 602.3290157318115, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9698.260068893433, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "u'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:39,603", - "created": 1614535179.603032, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 603.032112121582, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9698.963165283203, - "thread": 139998837839616, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:39,603", - "created": 1614535179.603346, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 603.3461093902588, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9699.27716255188, - "thread": 139998837839616, - "threadName": "Thread-11" - } - ], - "msecs": 774.8260498046875, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9870.757102966309, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.1714799404144287 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,776", - "created": 1614535179.776095, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,775", - "created": 1614535179.775521, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 775.5210399627686, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9871.45209312439, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,775", - "created": 1614535179.775805, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 775.8049964904785, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9871.7360496521, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 776.094913482666, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9872.025966644287, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002899169921875 - }, - { - "args": [ - "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:39,776", - "created": 1614535179.776989, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:39,776", - "created": 1614535179.776496, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", - "module": "test", - "msecs": 776.4959335327148, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9872.426986694336, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:39,776", - "created": 1614535179.776745, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", - "module": "test", - "msecs": 776.745080947876, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9872.676134109497, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 776.9889831542969, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9872.920036315918, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024390220642089844 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:39,979", - "created": 1614535179.979087, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 253, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:39,777", - "created": 1614535179.777532, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 777.5321006774902, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9873.463153839111, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:39,782", - "created": 1614535179.782485, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 782.4850082397461, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9878.416061401367, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:39,783", - "created": 1614535179.783079, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 783.0789089202881, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9879.00996208191, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,783", - "created": 1614535179.78336, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 783.3600044250488, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9879.29105758667, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:39,783", - "created": 1614535179.783621, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 783.621072769165, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9879.552125930786, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,784", - "created": 1614535179.784063, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 784.0631008148193, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9879.99415397644, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,784", - "created": 1614535179.784405, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 784.404993057251, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9880.336046218872, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,784", - "created": 1614535179.784856, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 784.8560810089111, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9880.787134170532, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,785", - "created": 1614535179.785159, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 785.1591110229492, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9881.09016418457, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,785", - "created": 1614535179.785563, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 785.5629920959473, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9881.494045257568, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,785", - "created": 1614535179.785906, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 785.9060764312744, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9881.837129592896, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:39,786", - "created": 1614535179.786626, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 786.6261005401611, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9882.557153701782, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:39,787", - "created": 1614535179.787079, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 787.0790958404541, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9883.010149002075, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,787", - "created": 1614535179.787514, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 787.5139713287354, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9883.445024490356, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:39,787", - "created": 1614535179.787782, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 787.7819538116455, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9883.713006973267, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:39,788", - "created": 1614535179.788113, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 788.1131172180176, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9884.044170379639, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:39,788", - "created": 1614535179.78839, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 788.3899211883545, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9884.320974349976, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" - ], - "asctime": "2021-02-28 18:59:39,789", - "created": 1614535179.789025, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "stp", - "msecs": 789.025068283081, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9884.956121444702, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "u'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:39,789", - "created": 1614535179.789623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 789.6230220794678, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9885.554075241089, - "thread": 139998284216064, - "threadName": "Thread-12" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:39,790", - "created": 1614535179.79005, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 790.0500297546387, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 9885.98108291626, - "thread": 139998284216064, - "threadName": "Thread-12" - } - ], - "msecs": 979.0871143341064, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10075.018167495728, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.18903708457946777 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,980", - "created": 1614535179.980255, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,979", - "created": 1614535179.979749, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 979.7489643096924, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10075.680017471313, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:39,980", - "created": 1614535179.980008, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 980.0078868865967, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10075.938940048218, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 980.2548885345459, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10076.185941696167, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024700164794921875 - }, - { - "args": [ - "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:39,981", - "created": 1614535179.981258, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:39,980", - "created": 1614535179.980665, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", - "module": "test", - "msecs": 980.6649684906006, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10076.596021652222, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:39,980", - "created": 1614535179.98094, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", - "module": "test", - "msecs": 980.9401035308838, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10076.871156692505, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 981.2579154968262, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10077.188968658447, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003178119659423828 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 2.494802951812744, - "time_finished": "2021-02-28 18:59:39,981", - "time_start": "2021-02-28 18:59:37,486" - }, - "_Lmn-kE0hEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:39,982", - "created": 1614535179.98243, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 39, - "message": "_Lmn-kE0hEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 982.4299812316895, - "msg": "_Lmn-kE0hEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10078.36103439331, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:39,997", - "created": 1614535179.997812, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:39,983", - "created": 1614535179.983843, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 983.8430881500244, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10079.774141311646, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:39,985", - "created": 1614535179.985237, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 985.2368831634521, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10081.167936325073, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:39,985", - "created": 1614535179.985602, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 985.6019020080566, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10081.532955169678, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:39,986", - "created": 1614535179.98624, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 986.2399101257324, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10082.170963287354, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:39,986", - "created": 1614535179.986544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 986.5438938140869, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10082.474946975708, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:39,986", - "created": 1614535179.986954, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 986.9539737701416, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10082.885026931763, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:39,987", - "created": 1614535179.987198, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 987.1981143951416, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10083.129167556763, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:39,987", - "created": 1614535179.987459, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 987.4589443206787, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10083.3899974823, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:39,987", - "created": 1614535179.987704, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 987.7040386199951, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10083.635091781616, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:39,987", - "created": 1614535179.987978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 987.9779815673828, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10083.909034729004, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:39,988", - "created": 1614535179.988237, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 988.2369041442871, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10084.167957305908, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:39,988", - "created": 1614535179.988513, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 988.5129928588867, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10084.444046020508, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:39,988", - "created": 1614535179.988772, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 988.771915435791, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10084.702968597412, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:39,989", - "created": 1614535179.989151, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 989.1510009765625, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10085.082054138184, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:39,989", - "created": 1614535179.989389, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 989.3889427185059, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10085.319995880127, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:39,989", - "created": 1614535179.989615, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 989.6149635314941, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10085.546016693115, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:39,989", - "created": 1614535179.989858, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 989.8579120635986, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10085.78896522522, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:39,990", - "created": 1614535179.990069, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 990.0689125061035, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10085.999965667725, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:39,990", - "created": 1614535179.990279, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 990.278959274292, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10086.210012435913, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:39,990", - "created": 1614535179.990488, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 990.4880523681641, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10086.419105529785, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:39,990", - "created": 1614535179.990656, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 990.6558990478516, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10086.586952209473, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:39,990", - "created": 1614535179.990838, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 990.8380508422852, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10086.769104003906, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:39,991", - "created": 1614535179.991002, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 991.002082824707, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10086.933135986328, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:39,991", - "created": 1614535179.991412, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 991.4119243621826, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10087.342977523804, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:39,991", - "created": 1614535179.991607, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 991.6069507598877, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10087.538003921509, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:39,991", - "created": 1614535179.991843, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 991.8429851531982, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10087.77403831482, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:39,992", - "created": 1614535179.992611, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 992.6109313964844, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10088.541984558105, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:39,992", - "created": 1614535179.992999, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 992.9990768432617, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10088.930130004883, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:39,993", - "created": 1614535179.993301, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 993.3009147644043, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10089.231967926025, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:39,993", - "created": 1614535179.993684, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 993.6840534210205, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10089.615106582642, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:39,994", - "created": 1614535179.994251, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 994.251012802124, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10090.182065963745, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:39,994", - "created": 1614535179.99457, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 994.5700168609619, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10090.501070022583, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:39,994", - "created": 1614535179.994959, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 994.9591159820557, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10090.890169143677, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:39,995", - "created": 1614535179.995233, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 995.2330589294434, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10091.164112091064, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:39,995", - "created": 1614535179.995709, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 995.7089424133301, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10091.639995574951, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:39,996", - "created": 1614535179.996088, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 996.0880279541016, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10092.019081115723, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:39,996", - "created": 1614535179.996504, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 996.5040683746338, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10092.435121536255, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:39,996", - "created": 1614535179.996931, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 996.9310760498047, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10092.862129211426, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:39,997", - "created": 1614535179.997252, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 997.2519874572754, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10093.183040618896, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:39,997", - "created": 1614535179.997412, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 997.4119663238525, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10093.343019485474, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:39,997", - "created": 1614535179.99751, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 997.5099563598633, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10093.441009521484, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:39,997", - "created": 1614535179.997604, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 997.6038932800293, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10093.53494644165, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:39,997", - "created": 1614535179.99771, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 997.7099895477295, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10093.64104270935, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 997.812032699585, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10093.743085861206, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00010204315185546875 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:40,341", - "created": 1614535180.341955, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:39,998", - "created": 1614535179.998011, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 998.0111122131348, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10093.942165374756, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:39,998", - "created": 1614535179.998103, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 998.1029033660889, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10094.03395652771, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:39,998", - "created": 1614535179.998197, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 998.197078704834, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10094.128131866455, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:39,998", - "created": 1614535179.998359, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 998.358964920044, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10094.290018081665, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:39,998", - "created": 1614535179.99866, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 998.6600875854492, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10094.59114074707, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:39,998", - "created": 1614535179.9988, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 998.8000392913818, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10094.731092453003, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:39,998", - "created": 1614535179.998918, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 998.9180564880371, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10094.849109649658, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:40,002", - "created": 1614535180.002037, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 2.03704833984375, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10097.968101501465, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:40,002", - "created": 1614535180.0023, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 2.3000240325927734, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10098.231077194214, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,002", - "created": 1614535180.00242, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 2.4199485778808594, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10098.351001739502, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:40,002", - "created": 1614535180.002498, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 2.4979114532470703, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10098.428964614868, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,002", - "created": 1614535180.002606, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 2.605915069580078, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10098.536968231201, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,002", - "created": 1614535180.002688, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 2.6879310607910156, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10098.618984222412, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,002", - "created": 1614535180.002846, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 2.8460025787353516, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10098.777055740356, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,002", - "created": 1614535180.002933, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 2.933025360107422, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10098.864078521729, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003037, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 3.036975860595703, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10098.968029022217, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003126, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 3.125905990600586, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10099.056959152222, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003261, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 3.261089324951172, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10099.192142486572, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003353, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 3.353118896484375, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10099.284172058105, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003475, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 3.4749507904052734, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10099.406003952026, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003556, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 3.5560131072998047, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10099.48706626892, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003649, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 3.648996353149414, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10099.58004951477, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003725, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 3.7250518798828125, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10099.656105041504, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:40,003", - "created": 1614535180.003923, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 3.9229393005371094, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10099.853992462158, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:40,004", - "created": 1614535180.004159, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 4.158973693847656, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10100.090026855469, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:40,004", - "created": 1614535180.004276, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 4.276037216186523, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10100.207090377808, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:40,004", - "created": 1614535180.004586, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 4.585981369018555, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10100.51703453064, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:40,019", - "created": 1614535180.01901, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 19.010066986083984, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10114.941120147705, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:40,019", - "created": 1614535180.019275, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 19.27495002746582, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10115.206003189087, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,019", - "created": 1614535180.019382, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 19.381999969482422, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10115.313053131104, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:40,019", - "created": 1614535180.019464, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 19.46401596069336, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10115.395069122314, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,019", - "created": 1614535180.019571, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 19.57106590270996, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10115.502119064331, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,019", - "created": 1614535180.019785, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 19.784927368164062, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10115.715980529785, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,019", - "created": 1614535180.019924, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 19.923925399780273, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10115.854978561401, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.020017, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 20.016908645629883, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10115.947961807251, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.020137, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 20.13707160949707, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10116.068124771118, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.02023, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 20.23005485534668, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10116.161108016968, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.020395, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 20.39504051208496, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10116.326093673706, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.020491, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 20.49088478088379, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10116.421937942505, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.02066, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 20.659923553466797, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10116.590976715088, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.020769, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 20.76888084411621, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10116.699934005737, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.020879, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 20.879030227661133, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10116.810083389282, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:40,020", - "created": 1614535180.020957, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 20.956993103027344, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10116.888046264648, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:40,021", - "created": 1614535180.021094, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 21.094083786010742, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10117.025136947632, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:40,021", - "created": 1614535180.021282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 21.281957626342773, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10117.213010787964, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:40,021", - "created": 1614535180.021379, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 21.37899398803711, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10117.310047149658, - "thread": 139998267430656, - "threadName": "Thread-14" - } - ], - "msecs": 341.95494651794434, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10437.885999679565, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3205759525299072 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:40,342", - "created": 1614535180.342607, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 261, - "message": "Setting no Channel name for server and client", - "module": "test_communication", - "moduleLogger": [], - "msecs": 342.6070213317871, - "msg": "Setting no Channel name for server and client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10438.538074493408, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:40,343", - "created": 1614535180.343455, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "None", - "" - ], - "asctime": "2021-02-28 18:59:40,343", - "created": 1614535180.343008, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): None ()", - "module": "test", - "msecs": 343.00804138183594, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10438.939094543457, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "None", - "" - ], - "asctime": "2021-02-28 18:59:40,343", - "created": 1614535180.343243, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = None ()", - "module": "test", - "msecs": 343.242883682251, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10439.173936843872, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 343.45507621765137, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10439.386129379272, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00021219253540039062 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:40,344", - "created": 1614535180.34455, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "None", - "" - ], - "asctime": "2021-02-28 18:59:40,343", - "created": 1614535180.34391, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): None ()", - "module": "test", - "msecs": 343.90997886657715, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10439.841032028198, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "None", - "" - ], - "asctime": "2021-02-28 18:59:40,344", - "created": 1614535180.344178, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = None ()", - "module": "test", - "msecs": 344.1779613494873, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10440.109014511108, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 344.54989433288574, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10440.480947494507, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003719329833984375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:40,345", - "created": 1614535180.345156, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 267, - "message": "Setting different Channel names for client and Server", - "module": "test_communication", - "moduleLogger": [], - "msecs": 345.1559543609619, - "msg": "Setting different Channel names for client and Server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10441.087007522583, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:40,692", - "created": 1614535180.692209, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 271, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:40,345", - "created": 1614535180.345476, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 345.4759120941162, - "msg": "%s Connection Lost...", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10441.406965255737, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:40,345", - "created": 1614535180.345765, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 345.7651138305664, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10441.696166992188, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:40,345", - "created": 1614535180.345992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 345.9920883178711, - "msg": "%s Connection Lost...", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10441.923141479492, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:40,346", - "created": 1614535180.34621, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 346.2100028991699, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10442.141056060791, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:40,346", - "created": 1614535180.34643, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 346.43006324768066, - "msg": "%s Connection established...", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10442.361116409302, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:40,346", - "created": 1614535180.346615, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 346.6150760650635, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10442.546129226685, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:40,346", - "created": 1614535180.346788, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 346.7879295349121, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10442.718982696533, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-02-28 18:59:40,347", - "created": 1614535180.347088, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 347.088098526001, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10443.019151687622, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:40,347", - "created": 1614535180.347873, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 347.8729724884033, - "msg": "%s Connection established...", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10443.804025650024, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:40,348", - "created": 1614535180.348143, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 348.1431007385254, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10444.074153900146, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:40,348", - "created": 1614535180.348596, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 348.59609603881836, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10444.52714920044, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" - ], - "asctime": "2021-02-28 18:59:40,370", - "created": 1614535180.370652, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", - "module": "__init__", - "msecs": 370.6519603729248, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10466.583013534546, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" - ], - "asctime": "2021-02-28 18:59:40,371", - "created": 1614535180.371372, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", - "module": "__init__", - "msecs": 371.3719844818115, - "msg": "%s RX <- %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10467.303037643433, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,371", - "created": 1614535180.371672, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 371.6719150543213, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10467.602968215942, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:40,371", - "created": 1614535180.371922, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 371.9220161437988, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10467.85306930542, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,372", - "created": 1614535180.37224, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 372.2400665283203, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10468.171119689941, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,372", - "created": 1614535180.372489, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 372.48897552490234, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10468.420028686523, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,372", - "created": 1614535180.372872, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 372.87211418151855, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10468.80316734314, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,373", - "created": 1614535180.373084, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 373.08406829833984, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10469.015121459961, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,373", - "created": 1614535180.37331, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 373.3100891113281, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10469.24114227295, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,373", - "created": 1614535180.373487, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 373.4869956970215, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10469.418048858643, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,373", - "created": 1614535180.373791, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 373.790979385376, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10469.722032546997, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,374", - "created": 1614535180.374082, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", - "module": "__init__", - "msecs": 374.082088470459, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10470.01314163208, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,374", - "created": 1614535180.374328, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", - "module": "__init__", - "msecs": 374.3278980255127, - "msg": "%s RX <- %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10470.258951187134, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,374", - "created": 1614535180.374488, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 374.48811531066895, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10470.41916847229, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,374", - "created": 1614535180.374686, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 374.68600273132324, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10470.617055892944, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:40,374", - "created": 1614535180.374842, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 374.84192848205566, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10470.772981643677, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(66): 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 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4" - ], - "asctime": "2021-02-28 18:59:40,375", - "created": 1614535180.375169, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (66): 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 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "module": "stp", - "msecs": 375.169038772583, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10471.100091934204, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "u'client'" - ], - "asctime": "2021-02-28 18:59:40,375", - "created": 1614535180.375586, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'client'\"", - "module": "__init__", - "msecs": 375.58603286743164, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10471.517086029053, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:40,375", - "created": 1614535180.375819, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 375.81896781921387, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10471.750020980835, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "'server'", - "u'client'" - ], - "asctime": "2021-02-28 18:59:40,376", - "created": 1614535180.376183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__channel_name_request__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 430, - "message": "prot-server: overwriting user defined channel name from 'server' to u'client'", - "module": "__init__", - "msecs": 376.18303298950195, - "msg": "%s overwriting user defined channel name from %s to %s", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10472.114086151123, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:40,376", - "created": 1614535180.376475, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 376.47509574890137, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10472.406148910522, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:40,387", - "created": 1614535180.387083, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 387.0830535888672, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10483.014106750488, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:40,387", - "created": 1614535180.387623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 387.6230716705322, - "msg": "%s RX <- %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10483.554124832153, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,387", - "created": 1614535180.387845, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 387.8450393676758, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10483.776092529297, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:40,388", - "created": 1614535180.38803, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 388.0300521850586, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10483.96110534668, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,388", - "created": 1614535180.388263, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 388.2629871368408, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10484.194040298462, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,388", - "created": 1614535180.388433, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 388.43297958374023, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10484.364032745361, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,388", - "created": 1614535180.388652, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 388.65208625793457, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10484.583139419556, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,388", - "created": 1614535180.388824, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 388.8239860534668, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10484.755039215088, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,389", - "created": 1614535180.389019, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 389.0190124511719, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10484.950065612793, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,389", - "created": 1614535180.38917, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 389.16993141174316, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10485.100984573364, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,389", - "created": 1614535180.389381, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 389.38093185424805, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10485.31198501587, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,389", - "created": 1614535180.389549, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 389.54901695251465, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10485.480070114136, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,389", - "created": 1614535180.389835, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 389.8348808288574, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10485.765933990479, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,390", - "created": 1614535180.390029, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 390.0289535522461, - "msg": "%s RX <- %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10485.960006713867, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,390", - "created": 1614535180.390208, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 390.20800590515137, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10486.139059066772, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:40,390", - "created": 1614535180.390379, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 390.3789520263672, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10486.310005187988, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:40,390", - "created": 1614535180.390712, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 390.71202278137207, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10486.643075942993, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:40,391", - "created": 1614535180.391175, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 391.1750316619873, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10487.106084823608, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:40,391", - "created": 1614535180.391422, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 391.4220333099365, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10487.353086471558, - "thread": 139998267430656, - "threadName": "Thread-14" - } - ], - "msecs": 692.209005355835, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10788.140058517456, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.30078697204589844 - }, - { - "args": [ - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:40,693", - "created": 1614535180.693796, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content 'client' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:40,693", - "created": 1614535180.693109, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): 'client' ()", - "module": "test", - "msecs": 693.1090354919434, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10789.040088653564, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:40,693", - "created": 1614535180.693445, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = 'client' ()", - "module": "test", - "msecs": 693.4449672698975, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10789.376020431519, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 693.795919418335, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10789.726972579956, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003509521484375 - }, - { - "args": [ - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:40,694", - "created": 1614535180.694844, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content 'client' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:40,694", - "created": 1614535180.694381, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): 'client' ()", - "module": "test", - "msecs": 694.3809986114502, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10790.312051773071, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:40,694", - "created": 1614535180.694628, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = 'client' ()", - "module": "test", - "msecs": 694.6280002593994, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10790.55905342102, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 694.8440074920654, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10790.775060653687, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00021600723266601562 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:40,696", - "created": 1614535180.696819, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 277, - "message": "Setting identical Channel names for client and server", - "module": "test_communication", - "moduleLogger": [], - "msecs": 696.8190670013428, - "msg": "Setting identical Channel names for client and server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10792.750120162964, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:41,043", - "created": 1614535181.043492, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 281, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:40,697", - "created": 1614535180.697425, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 697.4248886108398, - "msg": "%s Connection Lost...", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10793.355941772461, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:40,697", - "created": 1614535180.697814, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 697.8139877319336, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10793.745040893555, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:40,698", - "created": 1614535180.698378, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 698.3780860900879, - "msg": "%s Connection Lost...", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10794.309139251709, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:40,698", - "created": 1614535180.698629, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 698.6289024353027, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10794.559955596924, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:40,698", - "created": 1614535180.698968, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 698.9679336547852, - "msg": "%s Connection established...", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10794.898986816406, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:40,699", - "created": 1614535180.699195, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 699.1949081420898, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10795.125961303711, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:40,699", - "created": 1614535180.699372, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 699.3720531463623, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10795.303106307983, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "'unittest'" - ], - "asctime": "2021-02-28 18:59:40,699", - "created": 1614535180.699543, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", - "module": "__init__", - "msecs": 699.5429992675781, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10795.4740524292, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:40,699", - "created": 1614535180.699869, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 699.86891746521, - "msg": "%s Connection established...", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10795.799970626831, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:40,699", - "created": 1614535180.699983, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 699.9828815460205, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10795.913934707642, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:40,700", - "created": 1614535180.700083, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 700.0830173492432, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10796.014070510864, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64" - ], - "asctime": "2021-02-28 18:59:40,710", - "created": 1614535180.710569, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64", - "module": "__init__", - "msecs": 710.568904876709, - "msg": "%s TX -> %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10806.49995803833, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64" - ], - "asctime": "2021-02-28 18:59:40,710", - "created": 1614535180.71092, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64", - "module": "__init__", - "msecs": 710.9200954437256, - "msg": "%s RX <- %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10806.851148605347, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,711", - "created": 1614535180.711088, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 711.0879421234131, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10807.018995285034, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:40,711", - "created": 1614535180.711219, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 711.219072341919, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10807.15012550354, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,711", - "created": 1614535180.711375, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 711.3749980926514, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10807.306051254272, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,711", - "created": 1614535180.711557, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 711.5569114685059, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10807.487964630127, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,711", - "created": 1614535180.711692, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 711.6920948028564, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10807.623147964478, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,711", - "created": 1614535180.711775, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 711.7750644683838, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10807.706117630005, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,711", - "created": 1614535180.711874, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 711.8740081787109, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10807.805061340332, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,711", - "created": 1614535180.711954, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 711.9541168212891, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10807.88516998291, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,712", - "created": 1614535180.712132, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e", - "module": "__init__", - "msecs": 712.1319770812988, - "msg": "%s TX -> %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10808.06303024292, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,712", - "created": 1614535180.712238, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (12): 22 3a 3d 20 30 7d b0 bd 92 06 3a 3e", - "module": "__init__", - "msecs": 712.238073348999, - "msg": "%s RX <- %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10808.16912651062, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,712", - "created": 1614535180.71233, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 712.3301029205322, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10808.261156082153, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,712", - "created": 1614535180.712492, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 712.4919891357422, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10808.423042297363, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,712", - "created": 1614535180.712624, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 712.6240730285645, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10808.555126190186, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:40,712", - "created": 1614535180.712723, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 712.7230167388916, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10808.654069900513, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(68): 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 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06" - ], - "asctime": "2021-02-28 18:59:40,712", - "created": 1614535180.712926, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (68): 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 38 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d b0 bd 92 06", - "module": "stp", - "msecs": 712.925910949707, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10808.856964111328, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "u'unittest'" - ], - "asctime": "2021-02-28 18:59:40,713", - "created": 1614535180.713288, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'unittest'\"", - "module": "__init__", - "msecs": 713.2880687713623, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10809.219121932983, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:40,713", - "created": 1614535180.71346, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 713.4599685668945, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10809.391021728516, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:40,713", - "created": 1614535180.713882, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 713.8819694519043, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10809.813022613525, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:40,728", - "created": 1614535180.728896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 728.895902633667, - "msg": "%s TX -> %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10824.826955795288, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:40,729", - "created": 1614535180.72921, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 729.2098999023438, - "msg": "%s RX <- %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10825.140953063965, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,729", - "created": 1614535180.72934, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 729.3400764465332, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10825.271129608154, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:40,729", - "created": 1614535180.729497, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 729.496955871582, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10825.428009033203, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,729", - "created": 1614535180.729629, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 729.6290397644043, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10825.560092926025, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,729", - "created": 1614535180.729911, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 729.9110889434814, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10825.842142105103, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730056, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 730.0560474395752, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10825.987100601196, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730169, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 730.1690578460693, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10826.10011100769, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730305, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 730.3049564361572, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10826.236009597778, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730405, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 730.4050922393799, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10826.336145401001, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730542, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 730.5419445037842, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10826.472997665405, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730633, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 730.633020401001, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10826.564073562622, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730786, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 730.7860851287842, - "msg": "%s TX -> %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10826.717138290405, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730895, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 730.8950424194336, - "msg": "%s RX <- %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10826.826095581055, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:40,730", - "created": 1614535180.730999, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 730.9989929199219, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10826.930046081543, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:40,731", - "created": 1614535180.731096, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 731.0960292816162, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10827.027082443237, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:40,731", - "created": 1614535180.731282, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 731.2819957733154, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10827.213048934937, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:40,731", - "created": 1614535180.731519, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 731.5189838409424, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10827.450037002563, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:40,731", - "created": 1614535180.731648, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 731.6479682922363, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 10827.579021453857, - "thread": 139998267430656, - "threadName": "Thread-14" - } - ], - "msecs": 43.49207878112793, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11139.423131942749, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3118441104888916 - }, - { - "args": [ - "'unittest'", - "" - ], - "asctime": "2021-02-28 18:59:41,044", - "created": 1614535181.044733, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content 'unittest' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "'unittest'", - "" - ], - "asctime": "2021-02-28 18:59:41,044", - "created": 1614535181.044256, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): 'unittest' ()", - "module": "test", - "msecs": 44.255971908569336, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11140.18702507019, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "'unittest'", - "" - ], - "asctime": "2021-02-28 18:59:41,044", - "created": 1614535181.044514, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = 'unittest' ()", - "module": "test", - "msecs": 44.51394081115723, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11140.444993972778, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 44.73304748535156, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11140.664100646973, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00021910667419433594 - }, - { - "args": [ - "'unittest'", - "" - ], - "asctime": "2021-02-28 18:59:41,045", - "created": 1614535181.045467, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content 'unittest' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "'unittest'", - "" - ], - "asctime": "2021-02-28 18:59:41,045", - "created": 1614535181.045082, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): 'unittest' ()", - "module": "test", - "msecs": 45.08209228515625, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11141.013145446777, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "'unittest'", - "" - ], - "asctime": "2021-02-28 18:59:41,045", - "created": 1614535181.045281, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = 'unittest' ()", - "module": "test", - "msecs": 45.28093338012695, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11141.211986541748, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 45.46689987182617, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11141.397953033447, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00018596649169921875 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:41,046", - "created": 1614535181.046888, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 287, - "message": "Setting Channel name for client only", - "module": "test_communication", - "moduleLogger": [], - "msecs": 46.888113021850586, - "msg": "Setting Channel name for client only", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11142.819166183472, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:41,393", - "created": 1614535181.393812, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 291, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,047", - "created": 1614535181.047587, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 47.586917877197266, - "msg": "%s Connection Lost...", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11143.517971038818, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:41,047", - "created": 1614535181.047886, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 47.885894775390625, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11143.816947937012, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,048", - "created": 1614535181.048107, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 48.10690879821777, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11144.037961959839, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:41,048", - "created": 1614535181.048299, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 48.29907417297363, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11144.230127334595, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,048", - "created": 1614535181.048489, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 48.48909378051758, - "msg": "%s Connection established...", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11144.420146942139, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,048", - "created": 1614535181.048675, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 48.6750602722168, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11144.606113433838, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:41,048", - "created": 1614535181.04885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 48.850059509277344, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11144.781112670898, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-02-28 18:59:41,049", - "created": 1614535181.049239, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 49.23892021179199, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11145.169973373413, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,049", - "created": 1614535181.049835, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 49.8349666595459, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11145.766019821167, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,050", - "created": 1614535181.050153, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 50.15301704406738, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11146.084070205688, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:41,050", - "created": 1614535181.050342, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 50.34208297729492, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11146.273136138916, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" - ], - "asctime": "2021-02-28 18:59:41,079", - "created": 1614535181.079973, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", - "module": "__init__", - "msecs": 79.97298240661621, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11175.904035568237, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" - ], - "asctime": "2021-02-28 18:59:41,080", - "created": 1614535181.080666, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", - "module": "__init__", - "msecs": 80.66606521606445, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11176.597118377686, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,080", - "created": 1614535181.080951, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 80.95097541809082, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11176.882028579712, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:41,081", - "created": 1614535181.081205, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 81.20489120483398, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11177.135944366455, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,081", - "created": 1614535181.081516, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 81.51602745056152, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11177.447080612183, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,081", - "created": 1614535181.081802, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 81.8018913269043, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11177.732944488525, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,082", - "created": 1614535181.08214, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 82.13996887207031, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11178.071022033691, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,082", - "created": 1614535181.082374, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 82.37409591674805, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11178.30514907837, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,082", - "created": 1614535181.082682, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 82.68189430236816, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11178.61294746399, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,083", - "created": 1614535181.083038, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 83.0380916595459, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11178.969144821167, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,083", - "created": 1614535181.083288, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 83.28795433044434, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11179.219007492065, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,083", - "created": 1614535181.083537, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", - "module": "__init__", - "msecs": 83.53710174560547, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11179.468154907227, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(10): 3d 20 30 7d 93 56 e3 b4 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,083", - "created": 1614535181.083742, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (10): 3d 20 30 7d 93 56 e3 b4 3a 3e", - "module": "__init__", - "msecs": 83.74190330505371, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11179.672956466675, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,084", - "created": 1614535181.084067, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 84.06710624694824, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11179.99815940857, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,084", - "created": 1614535181.084286, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 84.28597450256348, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11180.217027664185, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:41,084", - "created": 1614535181.084448, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 84.44809913635254, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11180.379152297974, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(66): 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 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4" - ], - "asctime": "2021-02-28 18:59:41,084", - "created": 1614535181.084794, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (66): 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 38 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 93 56 e3 b4", - "module": "stp", - "msecs": 84.7940444946289, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11180.72509765625, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "u'client'" - ], - "asctime": "2021-02-28 18:59:41,085", - "created": 1614535181.085234, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"u'client'\"", - "module": "__init__", - "msecs": 85.23392677307129, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11181.164979934692, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:41,085", - "created": 1614535181.085469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 85.46900749206543, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11181.400060653687, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "'client'" - ], - "asctime": "2021-02-28 18:59:41,085", - "created": 1614535181.085909, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__channel_name_request__", - "levelname": "INFO", - "levelno": 20, - "lineno": 432, - "message": "prot-server: channel name is now 'client'", - "module": "__init__", - "msecs": 85.90888977050781, - "msg": "%s channel name is now %s", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11181.839942932129, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:41,086", - "created": 1614535181.086183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 86.18307113647461, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11182.114124298096, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:41,097", - "created": 1614535181.097753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 97.75304794311523, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11193.684101104736, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:41,098", - "created": 1614535181.098325, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 98.32501411437988, - "msg": "%s RX <- %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11194.256067276001, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,098", - "created": 1614535181.098801, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 98.8008975982666, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11194.731950759888, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:41,099", - "created": 1614535181.099064, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 99.06411170959473, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11194.995164871216, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,099", - "created": 1614535181.09953, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 99.52998161315918, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11195.46103477478, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,099", - "created": 1614535181.099857, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 99.85709190368652, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11195.788145065308, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,100", - "created": 1614535181.100182, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 100.18205642700195, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11196.113109588623, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,100", - "created": 1614535181.100636, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 100.63600540161133, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11196.567058563232, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,101", - "created": 1614535181.10124, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 101.23991966247559, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11197.170972824097, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,101", - "created": 1614535181.101479, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 101.47905349731445, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11197.410106658936, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,101", - "created": 1614535181.101829, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 101.82905197143555, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11197.760105133057, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,102", - "created": 1614535181.102057, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 102.05698013305664, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11197.988033294678, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,102", - "created": 1614535181.102378, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 102.37789154052734, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11198.308944702148, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,102", - "created": 1614535181.102651, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 102.65088081359863, - "msg": "%s RX <- %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11198.58193397522, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,102", - "created": 1614535181.10297, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 102.96988487243652, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11198.900938034058, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:41,103", - "created": 1614535181.103149, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 103.1489372253418, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11199.079990386963, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:41,103", - "created": 1614535181.103476, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 103.47604751586914, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11199.40710067749, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:41,103", - "created": 1614535181.103899, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 103.89900207519531, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11199.830055236816, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:41,104", - "created": 1614535181.104135, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 104.13503646850586, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11200.066089630127, - "thread": 139998267430656, - "threadName": "Thread-14" - } - ], - "msecs": 393.8119411468506, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11489.742994308472, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.2896769046783447 - }, - { - "args": [ - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:41,395", - "created": 1614535181.395027, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content 'client' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:41,394", - "created": 1614535181.394554, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): 'client' ()", - "module": "test", - "msecs": 394.55389976501465, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11490.484952926636, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:41,394", - "created": 1614535181.39481, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = 'client' ()", - "module": "test", - "msecs": 394.8099613189697, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11490.74101448059, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 395.02692222595215, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11490.957975387573, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00021696090698242188 - }, - { - "args": [ - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:41,395", - "created": 1614535181.395816, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content 'client' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:41,395", - "created": 1614535181.395371, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): 'client' ()", - "module": "test", - "msecs": 395.3709602355957, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11491.302013397217, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "'client'", - "" - ], - "asctime": "2021-02-28 18:59:41,395", - "created": 1614535181.395568, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = 'client' ()", - "module": "test", - "msecs": 395.5678939819336, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11491.498947143555, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 395.8160877227783, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11491.7471408844, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024819374084472656 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:41,396", - "created": 1614535181.396566, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 297, - "message": "Setting Channel name for server only", - "module": "test_communication", - "moduleLogger": [], - "msecs": 396.56591415405273, - "msg": "Setting Channel name for server only", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11492.496967315674, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:41,744", - "created": 1614535181.744102, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 301, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,396", - "created": 1614535181.396909, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 396.9089984893799, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11492.840051651001, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:41,397", - "created": 1614535181.39716, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 397.1600532531738, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11493.091106414795, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,397", - "created": 1614535181.397376, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 397.37606048583984, - "msg": "%s Connection Lost...", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11493.307113647461, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:41,397", - "created": 1614535181.397578, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 397.57800102233887, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11493.50905418396, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,397", - "created": 1614535181.397818, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 397.81808853149414, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11493.749141693115, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,398", - "created": 1614535181.398028, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 398.0278968811035, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11493.958950042725, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:41,398", - "created": 1614535181.398227, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 398.2269763946533, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11494.158029556274, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:41,398", - "created": 1614535181.3986, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 398.60010147094727, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11494.531154632568, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,399", - "created": 1614535181.399822, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 399.8219966888428, - "msg": "%s Connection established...", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11495.753049850464, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,400", - "created": 1614535181.400173, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 400.1729488372803, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11496.104001998901, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:41,400", - "created": 1614535181.400469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 400.4690647125244, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11496.400117874146, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:41,404", - "created": 1614535181.404717, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 404.71696853637695, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11500.648021697998, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:41,405", - "created": 1614535181.405288, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 405.2879810333252, - "msg": "%s RX <- %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11501.219034194946, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,405", - "created": 1614535181.405626, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 405.6260585784912, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11501.557111740112, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:41,405", - "created": 1614535181.405894, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 405.89404106140137, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11501.825094223022, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,406", - "created": 1614535181.406382, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 406.38208389282227, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11502.313137054443, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,406", - "created": 1614535181.406576, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 406.57591819763184, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11502.506971359253, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,406", - "created": 1614535181.40681, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 406.81004524230957, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11502.74109840393, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,406", - "created": 1614535181.406981, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 406.9809913635254, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11502.912044525146, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,407", - "created": 1614535181.407215, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 407.2151184082031, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11503.146171569824, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,407", - "created": 1614535181.40741, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 407.4099063873291, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11503.34095954895, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,407", - "created": 1614535181.407747, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 407.7470302581787, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11503.6780834198, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,407", - "created": 1614535181.407946, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 407.9461097717285, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11503.87716293335, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,408", - "created": 1614535181.408208, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 408.20789337158203, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11504.138946533203, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,408", - "created": 1614535181.408403, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 408.4029197692871, - "msg": "%s RX <- %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11504.333972930908, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,408", - "created": 1614535181.408581, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 408.581018447876, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11504.512071609497, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:41,408", - "created": 1614535181.408739, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 408.7390899658203, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11504.670143127441, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:41,409", - "created": 1614535181.409074, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 409.074068069458, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11505.00512123108, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:41,409", - "created": 1614535181.409482, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 409.4820022583008, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11505.413055419922, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:41,409", - "created": 1614535181.409851, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 409.85107421875, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11505.782127380371, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "'server'" - ], - "asctime": "2021-02-28 18:59:41,410", - "created": 1614535181.410345, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"'server'\"", - "module": "__init__", - "msecs": 410.34507751464844, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11506.27613067627, - "thread": 139998275823360, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" - ], - "asctime": "2021-02-28 18:59:41,414", - "created": 1614535181.414333, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", - "module": "__init__", - "msecs": 414.3331050872803, - "msg": "%s TX -> %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11510.264158248901, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a" - ], - "asctime": "2021-02-28 18:59:41,414", - "created": 1614535181.41453, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a", - "module": "__init__", - "msecs": 414.53003883361816, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11510.46109199524, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,414", - "created": 1614535181.414674, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 414.6740436553955, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11510.605096817017, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:41,414", - "created": 1614535181.414779, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 414.7789478302002, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11510.710000991821, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,414", - "created": 1614535181.414887, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 414.8869514465332, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11510.818004608154, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,414", - "created": 1614535181.414966, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 414.9661064147949, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11510.897159576416, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.415078, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.07792472839355, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.008977890015, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.415152, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 415.15207290649414, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.083126068115, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.415252, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.2519702911377, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.183023452759, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.415327, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 415.3270721435547, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.258125305176, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.415444, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.44389724731445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.374950408936, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(10): 3d 20 30 7d 9c 48 3b b3 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.415558, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (10): 3d 20 30 7d 9c 48 3b b3 3a 3e", - "module": "__init__", - "msecs": 415.5580997467041, - "msg": "%s TX -> %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.489152908325, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(10): 3d 20 30 7d 9c 48 3b b3 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.415656, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (10): 3d 20 30 7d 9c 48 3b b3 3a 3e", - "module": "__init__", - "msecs": 415.65608978271484, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.587142944336, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.415842, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 415.84205627441406, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.773109436035, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,415", - "created": 1614535181.41594, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.9400463104248, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.871099472046, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:41,416", - "created": 1614535181.416015, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 416.0149097442627, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11511.945962905884, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(66): 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 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3" - ], - "asctime": "2021-02-28 18:59:41,416", - "created": 1614535181.416181, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (66): 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 39 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 9c 48 3b b3", - "module": "stp", - "msecs": 416.1810874938965, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11512.112140655518, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "u'server'" - ], - "asctime": "2021-02-28 18:59:41,416", - "created": 1614535181.416353, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"u'server'\"", - "module": "__init__", - "msecs": 416.3529872894287, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11512.28404045105, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:41,416", - "created": 1614535181.416461, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 416.4609909057617, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11512.392044067383, - "thread": 139998267430656, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "'server'" - ], - "asctime": "2021-02-28 18:59:41,416", - "created": 1614535181.416753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__channel_name_response__", - "levelname": "INFO", - "levelno": 20, - "lineno": 419, - "message": "prot-client: channel name is now 'server'", - "module": "__init__", - "msecs": 416.75305366516113, - "msg": "%s channel name is now %s", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11512.684106826782, - "thread": 139998267430656, - "threadName": "Thread-14" - } - ], - "msecs": 744.1020011901855, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11840.033054351807, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3273489475250244 - }, - { - "args": [ - "'server'", - "" - ], - "asctime": "2021-02-28 18:59:41,745", - "created": 1614535181.745519, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content 'server' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "'server'", - "" - ], - "asctime": "2021-02-28 18:59:41,745", - "created": 1614535181.745066, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): 'server' ()", - "module": "test", - "msecs": 745.0659275054932, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11840.996980667114, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "'server'", - "" - ], - "asctime": "2021-02-28 18:59:41,745", - "created": 1614535181.745306, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = 'server' ()", - "module": "test", - "msecs": 745.3060150146484, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11841.23706817627, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 745.5189228057861, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11841.449975967407, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002129077911376953 - }, - { - "args": [ - "'server'", - "" - ], - "asctime": "2021-02-28 18:59:41,746", - "created": 1614535181.746205, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content 'server' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "'server'", - "" - ], - "asctime": "2021-02-28 18:59:41,745", - "created": 1614535181.745858, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): 'server' ()", - "module": "test", - "msecs": 745.8579540252686, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11841.78900718689, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "'server'", - "" - ], - "asctime": "2021-02-28 18:59:41,746", - "created": 1614535181.74604, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = 'server' ()", - "module": "test", - "msecs": 746.0401058197021, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11841.971158981323, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 746.2050914764404, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11842.136144638062, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00016498565673828125 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 1.763775110244751, - "time_finished": "2021-02-28 18:59:41,746", - "time_start": "2021-02-28 18:59:39,982" - }, - "_Pn3WgE0NEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:35,494", - "created": 1614535175.494767, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 37, - "message": "_Pn3WgE0NEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 494.7669506072998, - "msg": "_Pn3WgE0NEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5590.698003768921, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508825, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:35,497", - "created": 1614535175.497015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 497.01499938964844, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5592.9460525512695, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:35,499", - "created": 1614535175.499407, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 499.4070529937744, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5595.3381061553955, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:35,499", - "created": 1614535175.499819, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 499.8190402984619, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5595.750093460083, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:35,501", - "created": 1614535175.501222, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 501.2218952178955, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5597.152948379517, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:35,501", - "created": 1614535175.501706, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 501.7058849334717, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5597.636938095093, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:35,502", - "created": 1614535175.502102, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 502.1018981933594, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5598.0329513549805, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:35,502", - "created": 1614535175.502467, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 502.46691703796387, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5598.397970199585, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:35,502", - "created": 1614535175.50277, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 502.76994705200195, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5598.701000213623, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:35,503", - "created": 1614535175.503039, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 503.0388832092285, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5598.96993637085, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:35,503", - "created": 1614535175.503321, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 503.32093238830566, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5599.251985549927, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:35,503", - "created": 1614535175.503966, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 503.9660930633545, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5599.897146224976, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:35,504", - "created": 1614535175.504259, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 504.2591094970703, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5600.190162658691, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:35,504", - "created": 1614535175.504457, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 504.4569969177246, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5600.388050079346, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:35,504", - "created": 1614535175.504545, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 504.5449733734131, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5600.476026535034, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:35,504", - "created": 1614535175.504673, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 504.6730041503906, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5600.604057312012, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:35,504", - "created": 1614535175.504851, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 504.8511028289795, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5600.782155990601, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:35,504", - "created": 1614535175.504991, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 504.9910545349121, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5600.922107696533, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:35,505", - "created": 1614535175.505128, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 505.1279067993164, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5601.0589599609375, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:35,505", - "created": 1614535175.505282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 505.281925201416, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5601.212978363037, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:35,505", - "created": 1614535175.505454, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 505.45406341552734, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5601.385116577148, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:35,505", - "created": 1614535175.505585, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 505.5849552154541, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5601.516008377075, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:35,505", - "created": 1614535175.505729, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 505.72896003723145, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5601.6600131988525, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:35,505", - "created": 1614535175.505868, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 505.86795806884766, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5601.799011230469, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:35,506", - "created": 1614535175.506217, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 506.21700286865234, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5602.148056030273, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:35,506", - "created": 1614535175.50639, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 506.3900947570801, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5602.321147918701, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:35,506", - "created": 1614535175.506949, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 506.94894790649414, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5602.880001068115, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:35,507", - "created": 1614535175.507095, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 507.0950984954834, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.0261516571045, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:35,507", - "created": 1614535175.507198, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 507.1980953216553, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.129148483276, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:35,507", - "created": 1614535175.507295, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 507.2948932647705, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.225946426392, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:35,507", - "created": 1614535175.5074, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 507.4000358581543, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.331089019775, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:35,507", - "created": 1614535175.507497, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 507.49707221984863, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.42812538147, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:35,507", - "created": 1614535175.507596, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 507.5960159301758, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.527069091797, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:35,507", - "created": 1614535175.507825, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 507.8248977661133, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.755950927734, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:35,507", - "created": 1614535175.507933, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 507.9329013824463, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.863954544067, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508052, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 508.05211067199707, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5603.983163833618, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508149, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 508.1489086151123, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.079961776733, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.50825, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 508.24999809265137, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.1810512542725, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508334, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 508.3339214324951, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.264974594116, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508421, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 508.4209442138672, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.351997375488, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508506, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 508.50605964660645, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.4371128082275, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508577, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 508.5771083831787, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.5081615448, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508653, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 508.652925491333, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.583978652954, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508745, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 508.7449550628662, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.676008224487, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 508.82506370544434, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.756116867065, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 8.0108642578125e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:35,853", - "created": 1614535175.853227, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:35,508", - "created": 1614535175.508979, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 508.97908210754395, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.910135269165, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:35,509", - "created": 1614535175.509063, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 509.0630054473877, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5604.994058609009, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:35,509", - "created": 1614535175.509181, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 509.18102264404297, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5605.112075805664, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:35,509", - "created": 1614535175.509363, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 509.36293601989746, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5605.293989181519, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:35,509", - "created": 1614535175.50962, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 509.61995124816895, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5605.55100440979, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:35,509", - "created": 1614535175.509733, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 509.7329616546631, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5605.664014816284, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:35,509", - "created": 1614535175.509812, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 509.8121166229248, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5605.743169784546, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:35,511", - "created": 1614535175.511898, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 511.8980407714844, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5607.8290939331055, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:35,512", - "created": 1614535175.512189, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 512.1889114379883, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.119964599609, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,512", - "created": 1614535175.512313, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 512.3128890991211, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.243942260742, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,512", - "created": 1614535175.51241, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 512.4099254608154, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.3409786224365, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,512", - "created": 1614535175.512531, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 512.531042098999, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.46209526062, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,512", - "created": 1614535175.512622, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 512.6221179962158, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.553171157837, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,512", - "created": 1614535175.512762, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 512.7620697021484, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.6931228637695, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,512", - "created": 1614535175.51284, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 512.8400325775146, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.771085739136, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,512", - "created": 1614535175.512941, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 512.9408836364746, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.871936798096, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.513026, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 513.0259990692139, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5608.957052230835, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.513153, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 513.153076171875, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5609.084129333496, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.513226, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 513.2260322570801, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5609.157085418701, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.51335, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 513.3500099182129, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5609.281063079834, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.513438, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 513.4379863739014, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5609.3690395355225, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.513522, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 513.5219097137451, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5609.452962875366, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.51359, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 513.5900974273682, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5609.521150588989, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.513765, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 513.7650966644287, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5609.69614982605, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:35,513", - "created": 1614535175.513978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 513.9780044555664, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5609.9090576171875, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:35,514", - "created": 1614535175.514086, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 514.0860080718994, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5610.0170612335205, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:35,514", - "created": 1614535175.51421, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 514.2099857330322, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5610.141038894653, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:35,515", - "created": 1614535175.515934, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 515.9339904785156, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5611.865043640137, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:35,516", - "created": 1614535175.51624, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 516.2398815155029, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5612.170934677124, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,516", - "created": 1614535175.516446, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 516.4461135864258, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5612.377166748047, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,516", - "created": 1614535175.516541, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 516.5410041809082, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5612.472057342529, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,516", - "created": 1614535175.516658, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 516.6580677032471, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5612.589120864868, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,516", - "created": 1614535175.516779, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 516.7789459228516, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5612.709999084473, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,516", - "created": 1614535175.516899, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 516.8991088867188, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5612.83016204834, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,516", - "created": 1614535175.517, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 516.9999599456787, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5612.9310131073, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.517084, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 517.0838832855225, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.014936447144, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.517155, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 517.1549320220947, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.085985183716, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.517245, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 517.2450542449951, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.176107406616, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.517309, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 517.3089504241943, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.240003585815, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.517413, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 517.4129009246826, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.343954086304, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.517496, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 517.4961090087891, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.42716217041, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.51757, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 517.5700187683105, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.501071929932, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.517642, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 517.6420211791992, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.57307434082, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:35,517", - "created": 1614535175.517828, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 517.8279876708984, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.7590408325195, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:35,518", - "created": 1614535175.518045, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 518.0449485778809, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5613.976001739502, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:35,518", - "created": 1614535175.518154, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 518.1539058685303, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5614.084959030151, - "thread": 139998846232320, - "threadName": "Thread-10" - } - ], - "msecs": 853.226900100708, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5949.157953262329, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.33507299423217773 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:35,854", - "created": 1614535175.854047, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 150, - "message": "Setting a Server secret and no Client secret", - "module": "test_communication", - "moduleLogger": [], - "msecs": 854.0470600128174, - "msg": "Setting a Server secret and no Client secret", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5949.9781131744385, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:36,056", - "created": 1614535176.0561, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 153, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: execute request, data_id: 36", - "status: okay", - "'msg3_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:35,854", - "created": 1614535175.854633, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 854.633092880249, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5950.56414604187, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:35,879", - "created": 1614535175.879944, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 879.9440860748291, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5975.87513923645, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:35,880", - "created": 1614535175.880703, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 880.7029724121094, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5976.6340255737305, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,881", - "created": 1614535175.881024, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 881.0238838195801, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5976.954936981201, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,881", - "created": 1614535175.881313, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 881.3130855560303, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5977.244138717651, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,881", - "created": 1614535175.881887, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 881.8869590759277, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5977.818012237549, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,882", - "created": 1614535175.882288, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 882.2879791259766, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5978.219032287598, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,882", - "created": 1614535175.882689, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 882.6889991760254, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5978.6200523376465, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,882", - "created": 1614535175.882989, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 882.9889297485352, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5978.919982910156, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,883", - "created": 1614535175.883338, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 883.3379745483398, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5979.269027709961, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,883", - "created": 1614535175.883595, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 883.5949897766113, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5979.526042938232, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,884", - "created": 1614535175.884151, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e", - "module": "__init__", - "msecs": 884.1509819030762, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5980.082035064697, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,884", - "created": 1614535175.88455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 7d 18 82 9a 08 3a 3e", - "module": "__init__", - "msecs": 884.5500946044922, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5980.481147766113, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,884", - "created": 1614535175.884916, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 884.9160671234131, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5980.847120285034, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,885", - "created": 1614535175.885163, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 885.1630687713623, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5981.094121932983, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,885", - "created": 1614535175.885439, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 885.4389190673828, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5981.369972229004, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,885", - "created": 1614535175.885686, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 885.685920715332, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5981.616973876953, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(88): 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 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08" - ], - "asctime": "2021-02-28 18:59:35,886", - "created": 1614535175.886257, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 36 7d 18 82 9a 08", - "module": "stp", - "msecs": 886.2569332122803, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5982.187986373901, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: execute request, data_id: 36", - "status: okay", - "u'msg3_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:35,886", - "created": 1614535175.886814, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: execute request, data_id: 36, status: okay, data: \"u'msg3_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 886.8141174316406, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5982.745170593262, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:35,887", - "created": 1614535175.887092, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 471, - "message": "prot-server: Authentification is required. Just sending negative response.", - "module": "__init__", - "msecs": 887.092113494873, - "msg": "%s Authentification is required. Just sending negative response.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5983.023166656494, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: execute response, data_id: 36", - "status: authentification required", - "None" - ], - "asctime": "2021-02-28 18:59:35,887", - "created": 1614535175.887424, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-server: TX -> service: execute response, data_id: 36, status: authentification required, data: \"None\"", - "module": "__init__", - "msecs": 887.4239921569824, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 5983.3550453186035, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" - ], - "asctime": "2021-02-28 18:59:35,919", - "created": 1614535175.919771, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", - "module": "__init__", - "msecs": 919.7709560394287, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6015.70200920105, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" - ], - "asctime": "2021-02-28 18:59:35,920", - "created": 1614535175.920309, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", - "module": "__init__", - "msecs": 920.3090667724609, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6016.240119934082, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,920", - "created": 1614535175.920598, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 920.598030090332, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6016.529083251953, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:35,920", - "created": 1614535175.920807, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 920.806884765625, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6016.737937927246, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,921", - "created": 1614535175.92106, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 921.0600852966309, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6016.991138458252, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,921", - "created": 1614535175.921263, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 921.2629795074463, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6017.194032669067, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,921", - "created": 1614535175.921554, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 921.5540885925293, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6017.48514175415, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,921", - "created": 1614535175.921791, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 921.7910766601562, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6017.722129821777, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,922", - "created": 1614535175.922059, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 922.0590591430664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6017.9901123046875, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,922", - "created": 1614535175.922256, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 922.2559928894043, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6018.187046051025, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,922", - "created": 1614535175.922529, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 922.5289821624756, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6018.460035324097, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:35,922", - "created": 1614535175.922741, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 922.7409362792969, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6018.671989440918, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(8): 36 7d 5e 04 41 f5 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,923", - "created": 1614535175.923049, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (8): 36 7d 5e 04 41 f5 3a 3e", - "module": "__init__", - "msecs": 923.0489730834961, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6018.980026245117, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(8): 36 7d 5e 04 41 f5 3a 3e" - ], - "asctime": "2021-02-28 18:59:35,923", - "created": 1614535175.92329, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (8): 36 7d 5e 04 41 f5 3a 3e", - "module": "__init__", - "msecs": 923.2900142669678, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6019.221067428589, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:35,923", - "created": 1614535175.923517, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 923.5169887542725, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6019.448041915894, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:35,923", - "created": 1614535175.923708, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 923.7079620361328, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6019.639015197754, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 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 33 36 7d 5e 04 41 f5" - ], - "asctime": "2021-02-28 18:59:35,924", - "created": 1614535175.924114, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (64): 7b 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 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 33 36 7d 5e 04 41 f5", - "module": "stp", - "msecs": 924.1139888763428, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6020.045042037964, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: execute response, data_id: 36", - "status: authentification required", - "None" - ], - "asctime": "2021-02-28 18:59:35,924", - "created": 1614535175.924588, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", - "module": "__init__", - "msecs": 924.5879650115967, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6020.519018173218, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:35,924", - "created": 1614535175.924889, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 924.889087677002, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6020.820140838623, - "thread": 139998846232320, - "threadName": "Thread-10" - } - ], - "msecs": 56.099891662597656, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6152.030944824219, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.1312108039855957 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:36,057", - "created": 1614535176.057332, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:36,056", - "created": 1614535176.056828, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 56.82802200317383, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6152.759075164795, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:36,057", - "created": 1614535176.057103, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 57.10291862487793, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6153.033971786499, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 57.33203887939453, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6153.263092041016, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00022912025451660156 - }, - { - "args": [ - "{u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36}", - "" - ], - "asctime": "2021-02-28 18:59:36,058", - "created": 1614535176.058176, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36}", - "" - ], - "asctime": "2021-02-28 18:59:36,057", - "created": 1614535176.057683, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {u'status': 3, u'service_id': 31, u'data': None, u'data_id': 36} ()", - "module": "test", - "msecs": 57.68299102783203, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6153.614044189453, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'status': 3, 'service_id': 31, 'data': None, 'data_id': 36}", - "" - ], - "asctime": "2021-02-28 18:59:36,057", - "created": 1614535176.057911, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'status': 3, 'service_id': 31, 'data': None, 'data_id': 36} ()", - "module": "test", - "msecs": 57.910919189453125, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6153.841972351074, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 58.17604064941406, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6154.107093811035, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002651214599609375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:36,058", - "created": 1614535176.058552, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 159, - "message": "Setting no Server secret but a Client secret", - "module": "test_communication", - "moduleLogger": [], - "msecs": 58.55202674865723, - "msg": "Setting no Server secret but a Client secret", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6154.483079910278, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:36,361", - "created": 1614535176.361994, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 162, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:36,059", - "created": 1614535176.059096, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 59.09609794616699, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6155.027151107788, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:36,060", - "created": 1614535176.060466, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 60.46605110168457, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6156.397104263306, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:36,061", - "created": 1614535176.061127, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 61.1269474029541, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6157.058000564575, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,061", - "created": 1614535176.061434, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 61.434030532836914, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6157.365083694458, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:36,061", - "created": 1614535176.061715, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 61.714887619018555, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6157.64594078064, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,062", - "created": 1614535176.062034, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 62.033891677856445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6157.9649448394775, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:36,062", - "created": 1614535176.062268, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 62.26801872253418, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6158.199071884155, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,062", - "created": 1614535176.062591, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 62.5910758972168, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6158.522129058838, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:36,062", - "created": 1614535176.062998, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 62.998056411743164, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6158.929109573364, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,063", - "created": 1614535176.063248, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 63.2479190826416, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6159.178972244263, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:36,063", - "created": 1614535176.06343, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 63.430070877075195, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6159.361124038696, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:36,063", - "created": 1614535176.063975, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 63.97509574890137, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6159.9061489105225, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:36,064", - "created": 1614535176.064449, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 64.44907188415527, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6160.380125045776, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,064", - "created": 1614535176.064764, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 64.76402282714844, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6160.6950759887695, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:36,065", - "created": 1614535176.065008, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 65.00792503356934, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6160.93897819519, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,065", - "created": 1614535176.065278, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 65.2780532836914, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6161.2091064453125, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:36,065", - "created": 1614535176.065567, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 65.5670166015625, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6161.498069763184, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" - ], - "asctime": "2021-02-28 18:59:36,066", - "created": 1614535176.066245, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "stp", - "msecs": 66.24507904052734, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6162.176132202148, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "u'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:36,066", - "created": 1614535176.06662, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 66.6201114654541, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6162.551164627075, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:36,066", - "created": 1614535176.066737, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 475, - "message": "prot-client: Authentification is required. Incomming message will be ignored.", - "module": "__init__", - "msecs": 66.73693656921387, - "msg": "%s Authentification is required. Incomming message will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6162.667989730835, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:36,361", - "created": 1614535176.361427, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 361.42706871032715, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6457.358121871948, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 361.99402809143066, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6457.925081253052, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0005669593811035156 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:36,363", - "created": 1614535176.363318, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:36,362", - "created": 1614535176.36259, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 362.59007453918457, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6458.521127700806, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:36,362", - "created": 1614535176.362916, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 362.9159927368164, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6458.8470458984375, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 363.31796646118164, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6459.249019622803, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0004019737243652344 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,364", - "created": 1614535176.364401, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,363", - "created": 1614535176.363893, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 363.8930320739746, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6459.824085235596, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,364", - "created": 1614535176.364133, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 364.1328811645508, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6460.063934326172, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 364.40110206604004, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6460.332155227661, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002682209014892578 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:36,364", - "created": 1614535176.364774, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 168, - "message": "Identical secrets set", - "module": "test_communication", - "moduleLogger": [], - "msecs": 364.7739887237549, - "msg": "Identical secrets set", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6460.705041885376, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:36,667", - "created": 1614535176.667382, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 171, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:36,365", - "created": 1614535176.36529, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 365.28992652893066, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6461.220979690552, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "0.28705533596837945", - "17", - "34" - ], - "asctime": "2021-02-28 18:59:36,666", - "created": 1614535176.666888, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", - "module": "__init__", - "msecs": 666.8879985809326, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6762.819051742554, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 667.382001876831, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6763.313055038452, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0004940032958984375 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:36,668", - "created": 1614535176.668479, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:36,667", - "created": 1614535176.667909, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): False ()", - "module": "test", - "msecs": 667.9089069366455, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6763.839960098267, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:36,668", - "created": 1614535176.668218, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = False ()", - "module": "test", - "msecs": 668.2178974151611, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6764.148950576782, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 668.4789657592773, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6764.410018920898, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00026106834411621094 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,669", - "created": 1614535176.669541, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,668", - "created": 1614535176.668926, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): None ()", - "module": "test", - "msecs": 668.9260005950928, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6764.857053756714, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,669", - "created": 1614535176.669187, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = None ()", - "module": "test", - "msecs": 669.187068939209, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6765.11812210083, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 669.5408821105957, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6765.471935272217, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00035381317138671875 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:36,973", - "created": 1614535176.973033, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 177, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:36,671", - "created": 1614535176.671006, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 671.0059642791748, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 6766.937017440796, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:36,972", - "created": 1614535176.972536, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 972.5360870361328, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7068.467140197754, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 973.0329513549805, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7068.964004516602, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0004968643188476562 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:36,974", - "created": 1614535176.974523, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:36,973", - "created": 1614535176.973872, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): False ()", - "module": "test", - "msecs": 973.8719463348389, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7069.80299949646, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:36,974", - "created": 1614535176.974226, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = False ()", - "module": "test", - "msecs": 974.2259979248047, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7070.157051086426, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 974.5230674743652, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7070.454120635986, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002970695495605469 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,975", - "created": 1614535176.975272, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,974", - "created": 1614535176.974878, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 974.8780727386475, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7070.809125900269, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:36,975", - "created": 1614535176.975083, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 975.0831127166748, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7071.014165878296, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 975.2719402313232, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7071.202993392944, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0001888275146484375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:37,076", - "created": 1614535177.076917, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 182, - "message": "Performing Authentification", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:36,975", - "created": 1614535176.975747, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 975.7471084594727, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7071.678161621094, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:36,992", - "created": 1614535176.992438, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 992.4380779266357, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7088.369131088257, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:36,993", - "created": 1614535176.993062, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 993.0620193481445, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7088.993072509766, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,993", - "created": 1614535176.993315, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 993.3149814605713, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7089.246034622192, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:36,993", - "created": 1614535176.993525, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 993.5250282287598, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7089.456081390381, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,993", - "created": 1614535176.993846, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 993.8459396362305, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7089.776992797852, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:36,994", - "created": 1614535176.994053, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 994.0528869628906, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7089.983940124512, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,994", - "created": 1614535176.994312, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 994.312047958374, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7090.243101119995, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:36,994", - "created": 1614535176.994499, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 994.4989681243896, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7090.430021286011, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,994", - "created": 1614535176.994724, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 994.7240352630615, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7090.655088424683, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:36,994", - "created": 1614535176.994918, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 994.9181079864502, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7090.849161148071, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,995", - "created": 1614535176.995166, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 995.1660633087158, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7091.097116470337, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:36,995", - "created": 1614535176.995342, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 995.3420162200928, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7091.273069381714, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:36,995", - "created": 1614535176.995618, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 995.6181049346924, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7091.5491580963135, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:36,995", - "created": 1614535176.995833, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 995.8329200744629, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7091.763973236084, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:36,996", - "created": 1614535176.996053, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 996.0529804229736, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7091.984033584595, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:36,996", - "created": 1614535176.996235, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 996.2348937988281, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7092.165946960449, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(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 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 30 7d 10 4d cd 55" - ], - "asctime": "2021-02-28 18:59:36,996", - "created": 1614535176.996601, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 30 7d 10 4d cd 55", - "module": "stp", - "msecs": 996.6011047363281, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7092.532157897949, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:36,997", - "created": 1614535176.997102, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 997.1020221710205, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7093.033075332642, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 18:59:36,997", - "created": 1614535176.997358, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 997.3580837249756, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7093.289136886597, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'c73c065343bea2e085b402f668f9e146e77f2d00d1b7a1c5dcec31daef3ee95c'" - ], - "asctime": "2021-02-28 18:59:36,997", - "created": 1614535176.99774, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'c73c065343bea2e085b402f668f9e146e77f2d00d1b7a1c5dcec31daef3ee95c'\"", - "module": "__init__", - "msecs": 997.7400302886963, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7093.671083450317, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 33 63 30 36 35 33 34 33 62 65 61 32 65 30 38 35 62" - ], - "asctime": "2021-02-28 18:59:37,006", - "created": 1614535177.006028, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 33 63 30 36 35 33 34 33 62 65 61 32 65 30 38 35 62", - "module": "__init__", - "msecs": 6.027936935424805, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7101.958990097046, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 33 63 30 36 35 33 34 33 62 65 61 32 65 30 38 35 62" - ], - "asctime": "2021-02-28 18:59:37,006", - "created": 1614535177.006595, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 33 63 30 36 35 33 34 33 62 65 61 32 65 30 38 35 62", - "module": "__init__", - "msecs": 6.59489631652832, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7102.525949478149, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,006", - "created": 1614535177.006816, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 6.815910339355469, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7102.746963500977, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:37,006", - "created": 1614535177.007, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 6.999969482421875, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7102.931022644043, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,007", - "created": 1614535177.007212, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 7.211923599243164, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7103.142976760864, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,007", - "created": 1614535177.007379, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 7.379055023193359, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7103.310108184814, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,007", - "created": 1614535177.007737, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 7.736921310424805, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7103.667974472046, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,007", - "created": 1614535177.007955, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 7.955074310302734, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7103.886127471924, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,008", - "created": 1614535177.00827, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 8.270025253295898, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7104.201078414917, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,008", - "created": 1614535177.008457, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 8.456945419311523, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7104.387998580933, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(64): 34 30 32 66 36 36 38 66 39 65 31 34 36 65 37 37 66 32 64 30 30 64 31 62 37 61 31 63 35 64 63 65 63 33 31 64 61 65 66 33 65 65 39 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1d 1c" - ], - "asctime": "2021-02-28 18:59:37,009", - "created": 1614535177.00907, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 34 30 32 66 36 36 38 66 39 65 31 34 36 65 37 37 66 32 64 30 30 64 31 62 37 61 31 63 35 64 63 65 63 33 31 64 61 65 66 33 65 65 39 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1d 1c", - "module": "__init__", - "msecs": 9.06991958618164, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7105.000972747803, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 34 30 32 66 36 36 38 66 39 65 31 34 36 65 37 37 66 32 64 30 30 64 31 62 37 61 31 63 35 64 63 65 63 33 31 64 61 65 66 33 65 65 39 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1d 1c" - ], - "asctime": "2021-02-28 18:59:37,009", - "created": 1614535177.009481, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 34 30 32 66 36 36 38 66 39 65 31 34 36 65 37 37 66 32 64 30 30 64 31 62 37 61 31 63 35 64 63 65 63 33 31 64 61 65 66 33 65 65 39 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1d 1c", - "module": "__init__", - "msecs": 9.480953216552734, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7105.412006378174, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,009", - "created": 1614535177.009989, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 9.989023208618164, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7105.920076370239, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,010", - "created": 1614535177.010193, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 10.193109512329102, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7106.12416267395, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(4): 17 cd 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,010", - "created": 1614535177.010497, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (4): 17 cd 3a 3e", - "module": "__init__", - "msecs": 10.497093200683594, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7106.428146362305, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(4): 17 cd 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,010", - "created": 1614535177.010719, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (4): 17 cd 3a 3e", - "module": "__init__", - "msecs": 10.719060897827148, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7106.650114059448, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,010", - "created": 1614535177.010923, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 10.922908782958984, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7106.85396194458, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:37,011", - "created": 1614535177.011111, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 11.111021041870117, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7107.042074203491, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 64 61 74 61 22 3a 20 22 63 37 33 63 30 36 35 33 34 33 62 65 61 32 65 30 38 35 62 34 30 32 66 36 36 38 66 39 65 31 34 36 65 37 37 66 32 64 30 30 64 31 62 37 61 31 63 35 64 63 65 63 33 31 64 61 65 66 33 65 65 39 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1d 1c 17 cd" - ], - "asctime": "2021-02-28 18:59:37,011", - "created": 1614535177.011668, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 64 61 74 61 22 3a 20 22 63 37 33 63 30 36 35 33 34 33 62 65 61 32 65 30 38 35 62 34 30 32 66 36 36 38 66 39 65 31 34 36 65 37 37 66 32 64 30 30 64 31 62 37 61 31 63 35 64 63 65 63 33 31 64 61 65 66 33 65 65 39 35 63 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1d 1c 17 cd", - "module": "stp", - "msecs": 11.667966842651367, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7107.5990200042725, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: seed", - "status: okay", - "u'c73c065343bea2e085b402f668f9e146e77f2d00d1b7a1c5dcec31daef3ee95c'" - ], - "asctime": "2021-02-28 18:59:37,012", - "created": 1614535177.012156, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'c73c065343bea2e085b402f668f9e146e77f2d00d1b7a1c5dcec31daef3ee95c'\"", - "module": "__init__", - "msecs": 12.156009674072266, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7108.087062835693, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "__authentificate_create_key__" - ], - "asctime": "2021-02-28 18:59:37,012", - "created": 1614535177.012392, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", - "module": "__init__", - "msecs": 12.392044067382812, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7108.323097229004, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: key", - "status: okay", - "'3d396a9e47d89bbef2bc8e5c946b9206c5be702d2bd96c4c91fd22ad1983a3ef2c5ba05139fba3a1c709b97a58fafa6c60e6a23a2aecddc73d067387260a76a3'" - ], - "asctime": "2021-02-28 18:59:37,012", - "created": 1614535177.012541, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'3d396a9e47d89bbef2bc8e5c946b9206c5be702d2bd96c4c91fd22ad1983a3ef2c5ba05139fba3a1c709b97a58fafa6c60e6a23a2aecddc73d067387260a76a3'\"", - "module": "__init__", - "msecs": 12.541055679321289, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7108.472108840942, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 64 33 39 36 61 39 65 34 37 64 38 39 62 62 65 66 32 62" - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014057, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 64 33 39 36 61 39 65 34 37 64 38 39 62 62 65 66 32 62", - "module": "__init__", - "msecs": 14.056921005249023, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7109.98797416687, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 64 33 39 36 61 39 65 34 37 64 38 39 62 62 65 66 32 62" - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014269, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 64 33 39 36 61 39 65 34 37 64 38 39 62 62 65 66 32 62", - "module": "__init__", - "msecs": 14.269113540649414, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.2001667022705, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014378, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 14.378070831298828, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.30912399292, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014464, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 14.46390151977539, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.3949546813965, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014572, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 14.571905136108398, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.5029582977295, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014652, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 14.652013778686523, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.583066940308, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014767, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 14.766931533813477, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.697984695435, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014844, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 14.843940734863281, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.774993896484, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,014", - "created": 1614535177.014941, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 14.940977096557617, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.872030258179, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,015", - "created": 1614535177.015006, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 15.006065368652344, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7110.937118530273, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(64): 63 38 65 35 63 39 34 36 62 39 32 30 36 63 35 62 65 37 30 32 64 32 62 64 39 36 63 34 63 39 31 66 64 32 32 61 64 31 39 38 33 61 33 65 66 32 63 35 62 61 30 35 31 33 39 66 62 61 33 61 31 63 37 30" - ], - "asctime": "2021-02-28 18:59:37,015", - "created": 1614535177.01519, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 63 38 65 35 63 39 34 36 62 39 32 30 36 63 35 62 65 37 30 32 64 32 62 64 39 36 63 34 63 39 31 66 64 32 32 61 64 31 39 38 33 61 33 65 66 32 63 35 62 61 30 35 31 33 39 66 62 61 33 61 31 63 37 30", - "module": "__init__", - "msecs": 15.189886093139648, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7111.120939254761, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 63 38 65 35 63 39 34 36 62 39 32 30 36 63 35 62 65 37 30 32 64 32 62 64 39 36 63 34 63 39 31 66 64 32 32 61 64 31 39 38 33 61 33 65 66 32 63 35 62 61 30 35 31 33 39 66 62 61 33 61 31 63 37 30" - ], - "asctime": "2021-02-28 18:59:37,015", - "created": 1614535177.015333, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 63 38 65 35 63 39 34 36 62 39 32 30 36 63 35 62 65 37 30 32 64 32 62 64 39 36 63 34 63 39 31 66 64 32 32 61 64 31 39 38 33 61 33 65 66 32 63 35 62 61 30 35 31 33 39 66 62 61 33 61 31 63 37 30", - "module": "__init__", - "msecs": 15.332937240600586, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7111.263990402222, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(64): 39 62 39 37 61 35 38 66 61 66 61 36 63 36 30 65 36 61 32 33 61 32 61 65 63 64 64 63 37 33 64 30 36 37 33 38 37 32 36 30 61 37 36 61 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 40 7e" - ], - "asctime": "2021-02-28 18:59:37,015", - "created": 1614535177.015582, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 39 62 39 37 61 35 38 66 61 66 61 36 63 36 30 65 36 61 32 33 61 32 61 65 63 64 64 63 37 33 64 30 36 37 33 38 37 32 36 30 61 37 36 61 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 40 7e", - "module": "__init__", - "msecs": 15.582084655761719, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7111.513137817383, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 39 62 39 37 61 35 38 66 61 66 61 36 63 36 30 65 36 61 32 33 61 32 61 65 63 64 64 63 37 33 64 30 36 37 33 38 37 32 36 30 61 37 36 61 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 40 7e" - ], - "asctime": "2021-02-28 18:59:37,015", - "created": 1614535177.015717, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 39 62 39 37 61 35 38 66 61 66 61 36 63 36 30 65 36 61 32 33 61 32 61 65 63 64 64 63 37 33 64 30 36 37 33 38 37 32 36 30 61 37 36 61 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 40 7e", - "module": "__init__", - "msecs": 15.717029571533203, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7111.648082733154, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,015", - "created": 1614535177.015915, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 15.9149169921875, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7111.845970153809, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,015", - "created": 1614535177.015999, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 15.999078750610352, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7111.930131912231, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(4): 31 8d 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,016", - "created": 1614535177.016121, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (4): 31 8d 3a 3e", - "module": "__init__", - "msecs": 16.12091064453125, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7112.051963806152, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(4): 31 8d 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,016", - "created": 1614535177.016195, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (4): 31 8d 3a 3e", - "module": "__init__", - "msecs": 16.195058822631836, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7112.126111984253, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,016", - "created": 1614535177.016262, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 16.262054443359375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7112.1931076049805, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:37,016", - "created": 1614535177.016324, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 16.32404327392578, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7112.255096435547, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(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 30 2c 20 22 64 61 74 61 22 3a 20 22 33 64 33 39 36 61 39 65 34 37 64 38 39 62 62 65 66 32 62 63 38 65 35 63 39 34 36 62 39 32 30 36 63 35 62 65 37 30 32 64 32 62 64 39 36 63 34 63 39 31 66 64 32 32 61 64 31 39 38 33 61 33 65 66 32 63 35 62 61 30 35 31 33 39 66 62 61 33 61 31 63 37 30 39 62 39 37 61 35 38 66 61 66 61 36 63 36 30 65 36 61 32 33 61 32 61 65 63 64 64 63 37 33 64 30 36 37 33 38 37 32 36 30 61 37 36 61 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 40 7e 31 8d" - ], - "asctime": "2021-02-28 18:59:37,016", - "created": 1614535177.01659, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 30 2c 20 22 64 61 74 61 22 3a 20 22 33 64 33 39 36 61 39 65 34 37 64 38 39 62 62 65 66 32 62 63 38 65 35 63 39 34 36 62 39 32 30 36 63 35 62 65 37 30 32 64 32 62 64 39 36 63 34 63 39 31 66 64 32 32 61 64 31 39 38 33 61 33 65 66 32 63 35 62 61 30 35 31 33 39 66 62 61 33 61 31 63 37 30 39 62 39 37 61 35 38 66 61 66 61 36 63 36 30 65 36 61 32 33 61 32 61 65 63 64 64 63 37 33 64 30 36 37 33 38 37 32 36 30 61 37 36 61 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 40 7e 31 8d", - "module": "stp", - "msecs": 16.590118408203125, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7112.521171569824, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: key", - "status: okay", - "u'3d396a9e47d89bbef2bc8e5c946b9206c5be702d2bd96c4c91fd22ad1983a3ef2c5ba05139fba3a1c709b97a58fafa6c60e6a23a2aecddc73d067387260a76a3'" - ], - "asctime": "2021-02-28 18:59:37,016", - "created": 1614535177.016753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'3d396a9e47d89bbef2bc8e5c946b9206c5be702d2bd96c4c91fd22ad1983a3ef2c5ba05139fba3a1c709b97a58fafa6c60e6a23a2aecddc73d067387260a76a3'\"", - "module": "__init__", - "msecs": 16.752958297729492, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7112.684011459351, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "__authentificate_check_key__" - ], - "asctime": "2021-02-28 18:59:37,016", - "created": 1614535177.016843, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", - "module": "__init__", - "msecs": 16.843080520629883, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7112.774133682251, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:37,016", - "created": 1614535177.016974, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 16.97397232055664, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7112.905025482178, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" - ], - "asctime": "2021-02-28 18:59:37,017", - "created": 1614535177.017355, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", - "module": "__init__", - "msecs": 17.354965209960938, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7113.286018371582, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" - ], - "asctime": "2021-02-28 18:59:37,017", - "created": 1614535177.017534, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", - "module": "__init__", - "msecs": 17.53401756286621, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7113.465070724487, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,017", - "created": 1614535177.017617, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 17.616987228393555, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7113.548040390015, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:37,017", - "created": 1614535177.017711, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 17.71092414855957, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7113.641977310181, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,017", - "created": 1614535177.017802, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 17.802000045776367, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7113.7330532073975, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,017", - "created": 1614535177.01787, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 17.869949340820312, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7113.801002502441, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,017", - "created": 1614535177.017966, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 17.966032028198242, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7113.897085189819, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.018031, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 18.030881881713867, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7113.961935043335, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.018114, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 18.114089965820312, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.045143127441, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.018175, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 18.17488670349121, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.105939865112, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.01826, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 18.26000213623047, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.191055297852, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.01832, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 18.320083618164062, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.251136779785, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(6): 11 d3 26 78 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.018425, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", - "module": "__init__", - "msecs": 18.42498779296875, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.35604095459, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(6): 11 d3 26 78 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.018516, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", - "module": "__init__", - "msecs": 18.516063690185547, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.447116851807, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.0186, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 18.599987030029297, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.53104019165, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.018674, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 18.67389678955078, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.604949951172, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(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 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.018827, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "stp", - "msecs": 18.826961517333984, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.758014678955, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:37,018", - "created": 1614535177.018999, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 18.999099731445312, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7114.930152893066, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-02-28 18:59:37,019", - "created": 1614535177.019096, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 19.095897674560547, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7115.026950836182, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:37,019", - "created": 1614535177.019183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentificate_process_feedback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 372, - "message": "prot-client: Got positive authentification feedback", - "module": "__init__", - "msecs": 19.182920455932617, - "msg": "%s Got positive authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7115.113973617554, - "thread": 139998846232320, - "threadName": "Thread-10" - } - ], - "msecs": 76.91693305969238, - "msg": "Performing Authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7172.8479862213135, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.057734012603759766 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:37,279", - "created": 1614535177.279346, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 185, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:37,077", - "created": 1614535177.077926, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 77.9259204864502, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7173.856973648071, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:37,082", - "created": 1614535177.082374, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 82.37409591674805, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7178.305149078369, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:37,082", - "created": 1614535177.082969, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 82.96895027160645, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7178.9000034332275, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,083", - "created": 1614535177.083264, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 83.26411247253418, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7179.195165634155, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:37,083", - "created": 1614535177.083497, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 83.4970474243164, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7179.4281005859375, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,084", - "created": 1614535177.084036, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 84.03611183166504, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7179.967164993286, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,084", - "created": 1614535177.084394, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 84.39397811889648, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7180.325031280518, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,084", - "created": 1614535177.084699, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 84.69891548156738, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7180.6299686431885, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,084", - "created": 1614535177.084908, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 84.90800857543945, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7180.839061737061, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,085", - "created": 1614535177.085153, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 85.15310287475586, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7181.084156036377, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,085", - "created": 1614535177.085359, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 85.35909652709961, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7181.290149688721, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,085", - "created": 1614535177.085831, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 85.8309268951416, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7181.761980056763, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,086", - "created": 1614535177.08617, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 86.16995811462402, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7182.101011276245, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,086", - "created": 1614535177.086458, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 86.45796775817871, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7182.3890209198, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,086", - "created": 1614535177.08663, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 86.63010597229004, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7182.561159133911, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,086", - "created": 1614535177.086816, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 86.81607246398926, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7182.74712562561, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:37,086", - "created": 1614535177.086969, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 86.96889877319336, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7182.899951934814, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" - ], - "asctime": "2021-02-28 18:59:37,087", - "created": 1614535177.087352, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "stp", - "msecs": 87.35203742980957, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7183.283090591431, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "u'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:37,087", - "created": 1614535177.087773, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 87.77308464050293, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7183.704137802124, - "thread": 139998854625024, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:37,088", - "created": 1614535177.088105, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 88.1049633026123, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7184.036016464233, - "thread": 139998854625024, - "threadName": "Thread-9" - } - ], - "msecs": 279.3459892272949, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7375.277042388916, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.19124102592468262 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:37,280", - "created": 1614535177.280419, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:37,279", - "created": 1614535177.279946, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 279.94608879089355, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7375.877141952515, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:37,280", - "created": 1614535177.28018, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 280.1799774169922, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7376.111030578613, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 280.41911125183105, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7376.350164413452, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002391338348388672 - }, - { - "args": [ - "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:37,281", - "created": 1614535177.281458, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:37,280", - "created": 1614535177.280813, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {u'status': 0, u'service_id': 17, u'data': u'msg1_data_to_be_transfered', u'data_id': 34} ()", - "module": "test", - "msecs": 280.81297874450684, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7376.744031906128, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:37,281", - "created": 1614535177.281202, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", - "module": "test", - "msecs": 281.2020778656006, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7377.133131027222, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 281.45790100097656, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7377.388954162598, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00025582313537597656 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:37,483", - "created": 1614535177.483476, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 191, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:37,281", - "created": 1614535177.281969, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 281.9690704345703, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7377.900123596191, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:37,285", - "created": 1614535177.285081, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 285.0809097290039, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7381.011962890625, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:37,285", - "created": 1614535177.28585, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 285.85004806518555, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7381.781101226807, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,286", - "created": 1614535177.286183, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 286.18311882019043, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7382.1141719818115, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:37,286", - "created": 1614535177.286442, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 286.4420413970947, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7382.373094558716, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,286", - "created": 1614535177.286753, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 286.75293922424316, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7382.683992385864, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,287", - "created": 1614535177.287007, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 287.00709342956543, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7382.9381465911865, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,287", - "created": 1614535177.287333, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 287.33301162719727, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7383.264064788818, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,287", - "created": 1614535177.287565, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 287.5649929046631, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7383.496046066284, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,287", - "created": 1614535177.287866, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 287.86611557006836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7383.797168731689, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,288", - "created": 1614535177.288088, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 288.0880832672119, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7384.019136428833, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,288", - "created": 1614535177.28864, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 288.64002227783203, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7384.571075439453, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:37,288", - "created": 1614535177.288998, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 288.9978885650635, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7384.928941726685, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,289", - "created": 1614535177.289597, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 289.5970344543457, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7385.528087615967, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:37,290", - "created": 1614535177.290002, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 290.00210762023926, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7385.93316078186, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:37,290", - "created": 1614535177.290512, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 290.5120849609375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7386.443138122559, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:37,290", - "created": 1614535177.29065, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 290.6498908996582, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7386.580944061279, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" - ], - "asctime": "2021-02-28 18:59:37,290", - "created": 1614535177.290877, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "stp", - "msecs": 290.877103805542, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7386.808156967163, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "u'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:37,291", - "created": 1614535177.291112, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 291.11194610595703, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7387.042999267578, - "thread": 139998846232320, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:37,291", - "created": 1614535177.29125, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 291.24999046325684, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7387.181043624878, - "thread": 139998846232320, - "threadName": "Thread-10" - } - ], - "msecs": 483.475923538208, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7579.406976699829, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.19222593307495117 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:37,484", - "created": 1614535177.484653, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:37,484", - "created": 1614535177.484165, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 484.1649532318115, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7580.096006393433, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:37,484", - "created": 1614535177.48443, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 484.43007469177246, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7580.361127853394, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 484.6529960632324, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7580.5840492248535, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00022292137145996094 - }, - { - "args": [ - "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:37,485", - "created": 1614535177.485453, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "{u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:37,485", - "created": 1614535177.485017, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): {u'status': 4, u'service_id': 17, u'data': u'msg2_data_to_be_transfered', u'data_id': 35} ()", - "module": "test", - "msecs": 485.0170612335205, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7580.948114395142, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:37,485", - "created": 1614535177.485239, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", - "module": "test", - "msecs": 485.23902893066406, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7581.170082092285, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 485.45289039611816, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 7581.383943557739, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00021386146545410156 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 1.9906859397888184, - "time_finished": "2021-02-28 18:59:37,485", - "time_start": "2021-02-28 18:59:35,494" - }, - "_Tb-78E4LEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 18:59:43,943", - "created": 1614535183.943729, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 46, - "message": "_Tb-78E4LEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 943.7289237976074, - "msg": "_Tb-78E4LEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14039.659976959229, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:43,951", - "created": 1614535183.951073, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:43,944", - "created": 1614535183.944885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 944.8850154876709, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14040.816068649292, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:43,946", - "created": 1614535183.94626, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 946.2599754333496, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14042.19102859497, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:43,946", - "created": 1614535183.946574, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 946.5739727020264, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14042.505025863647, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:43,947", - "created": 1614535183.947337, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 947.3369121551514, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14043.267965316772, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:43,947", - "created": 1614535183.94744, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 947.4399089813232, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14043.370962142944, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:43,947", - "created": 1614535183.947561, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 947.5610256195068, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14043.492078781128, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:43,947", - "created": 1614535183.94765, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 947.6499557495117, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14043.581008911133, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:43,947", - "created": 1614535183.947737, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 947.7369785308838, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14043.668031692505, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:43,947", - "created": 1614535183.947817, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 947.8170871734619, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14043.748140335083, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:43,947", - "created": 1614535183.947904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 947.904109954834, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14043.835163116455, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:43,947", - "created": 1614535183.947992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 947.9920864105225, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14043.923139572144, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948084, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 948.0841159820557, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.015169143677, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948173, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 948.1730461120605, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.104099273682, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.94829, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 948.2901096343994, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.22116279602, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.94837, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 948.3699798583984, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.30103302002, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948452, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 948.4519958496094, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.38304901123, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948519, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 948.5189914703369, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.450044631958, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948589, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 948.5890865325928, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.520139694214, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948661, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 948.6610889434814, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.592142105103, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948739, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 948.7390518188477, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.670104980469, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948808, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 948.807954788208, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.73900794983, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948874, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 948.8739967346191, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.80504989624, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:43,948", - "created": 1614535183.948948, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 948.9479064941406, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14044.878959655762, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949116, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 949.1159915924072, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.047044754028, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949192, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 949.1920471191406, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.123100280762, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949287, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 949.286937713623, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.217990875244, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.94936, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 949.3598937988281, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.29094696045, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949444, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 949.444055557251, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.375108718872, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949519, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 949.5189189910889, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.44997215271, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949604, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 949.6040344238281, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.53508758545, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949706, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 949.7060775756836, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.637130737305, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949812, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 949.8119354248047, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.742988586426, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.949887, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 949.8870372772217, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.818090438843, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:43,949", - "created": 1614535183.94995, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 949.9499797821045, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.881032943726, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.950031, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 950.031042098999, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14045.96209526062, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.950106, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 950.1059055328369, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14046.036958694458, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.95047, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 950.469970703125, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14046.401023864746, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.950563, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 950.5629539489746, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14046.494007110596, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.950655, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 950.6549835205078, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14046.586036682129, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.950745, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 950.7451057434082, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14046.67615890503, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.950831, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 950.8309364318848, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14046.761989593506, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.95091, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 950.9100914001465, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14046.841144561768, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:43,950", - "created": 1614535183.95099, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 950.9899616241455, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14046.921014785767, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 951.0729312896729, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14047.003984451294, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 8.296966552734375e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:44,295", - "created": 1614535184.295128, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:43,951", - "created": 1614535183.951241, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 951.2410163879395, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14047.17206954956, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:43,951", - "created": 1614535183.951327, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 951.3270854949951, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14047.258138656616, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:43,951", - "created": 1614535183.951409, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 951.409101486206, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14047.340154647827, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:43,951", - "created": 1614535183.95154, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 951.5399932861328, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14047.471046447754, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:43,951", - "created": 1614535183.951796, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 951.7960548400879, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14047.727108001709, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:43,951", - "created": 1614535183.951877, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 951.8771171569824, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14047.808170318604, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:43,951", - "created": 1614535183.95195, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 951.9500732421875, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14047.881126403809, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:43,952", - "created": 1614535183.952423, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 952.423095703125, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14048.354148864746, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:43,952", - "created": 1614535183.952618, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 952.617883682251, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14048.548936843872, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,952", - "created": 1614535183.952705, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 952.704906463623, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14048.635959625244, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:43,952", - "created": 1614535183.952779, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 952.7790546417236, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14048.710107803345, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,952", - "created": 1614535183.952871, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 952.8710842132568, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14048.802137374878, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,952", - "created": 1614535183.952937, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 952.9368877410889, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14048.86794090271, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953044, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 953.0439376831055, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14048.974990844727, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953128, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 953.1280994415283, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.05915260315, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953229, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 953.2289505004883, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.16000366211, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953304, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 953.3040523529053, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.235105514526, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953417, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 953.4170627593994, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.34811592102, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953491, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 953.4909725189209, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.422025680542, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.95361, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 953.6099433898926, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.540996551514, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953741, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 953.7410736083984, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.67212677002, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953879, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 953.8791179656982, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.81017112732, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:43,953", - "created": 1614535183.953972, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 953.9721012115479, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14049.903154373169, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:43,954", - "created": 1614535183.954161, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 954.1609287261963, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14050.091981887817, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:43,954", - "created": 1614535183.954357, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 954.3569087982178, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14050.287961959839, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:43,954", - "created": 1614535183.954477, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 954.477071762085, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14050.408124923706, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:43,954", - "created": 1614535183.954622, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 954.6220302581787, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14050.5530834198, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:43,962", - "created": 1614535183.962039, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 962.0389938354492, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14057.97004699707, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:43,962", - "created": 1614535183.962325, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 962.3250961303711, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14058.256149291992, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,962", - "created": 1614535183.962437, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 962.4369144439697, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14058.36796760559, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:43,962", - "created": 1614535183.962525, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 962.5248908996582, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14058.45594406128, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,962", - "created": 1614535183.96264, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 962.6400470733643, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14058.571100234985, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,962", - "created": 1614535183.962722, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 962.7220630645752, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14058.653116226196, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,962", - "created": 1614535183.962845, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 962.8450870513916, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14058.776140213013, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,962", - "created": 1614535183.962924, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 962.9240036010742, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14058.855056762695, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,963", - "created": 1614535183.96303, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 963.0300998687744, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14058.961153030396, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,963", - "created": 1614535183.963167, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 963.1669521331787, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14059.0980052948, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,963", - "created": 1614535183.963299, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 963.299036026001, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14059.230089187622, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,963", - "created": 1614535183.96338, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 963.3800983428955, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14059.311151504517, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,963", - "created": 1614535183.963518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 963.5179042816162, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14059.448957443237, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,963", - "created": 1614535183.963619, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 963.6189937591553, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14059.550046920776, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,963", - "created": 1614535183.963768, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 963.7680053710938, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14059.699058532715, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:43,963", - "created": 1614535183.96385, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 963.8500213623047, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14059.781074523926, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:43,964", - "created": 1614535183.964022, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 964.0219211578369, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14059.952974319458, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:43,964", - "created": 1614535183.964316, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 964.3158912658691, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14060.24694442749, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:43,964", - "created": 1614535183.964424, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 964.4238948822021, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14060.354948043823, - "thread": 139997722167040, - "threadName": "Thread-22" - } - ], - "msecs": 295.12810707092285, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14391.059160232544, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3307042121887207 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:44,296", - "created": 1614535184.296263, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_did_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "Registering a correct working Callback", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback__'", - "10", - "None" - ], - "asctime": "2021-02-28 18:59:44,295", - "created": 1614535184.295883, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=None", - "module": "__init__", - "msecs": 295.8829402923584, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14391.81399345398, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 296.2629795074463, - "msg": "Registering a correct working Callback", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14392.194032669067, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003800392150878906 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:44,497", - "created": 1614535184.497906, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_did_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 135, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:44,296", - "created": 1614535184.296753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 296.7529296875, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14392.683982849121, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:44,320", - "created": 1614535184.320911, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 320.9109306335449, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14416.841983795166, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:44,321", - "created": 1614535184.321531, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 321.5310573577881, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14417.46211051941, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,321", - "created": 1614535184.321832, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 321.83194160461426, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14417.762994766235, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:44,322", - "created": 1614535184.322062, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 322.06201553344727, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14417.993068695068, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,322", - "created": 1614535184.322338, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 322.3381042480469, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14418.269157409668, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,322", - "created": 1614535184.322561, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 322.56102561950684, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14418.492078781128, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,322", - "created": 1614535184.322851, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 322.85094261169434, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14418.781995773315, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,323", - "created": 1614535184.323053, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 323.05288314819336, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14418.983936309814, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,323", - "created": 1614535184.323315, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 323.314905166626, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14419.245958328247, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,323", - "created": 1614535184.323505, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 323.5049247741699, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14419.435977935791, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,323", - "created": 1614535184.323763, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 323.7628936767578, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14419.693946838379, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,323", - "created": 1614535184.323958, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 323.9579200744629, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14419.888973236084, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,324", - "created": 1614535184.324261, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 324.260950088501, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14420.192003250122, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,324", - "created": 1614535184.324492, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 324.4919776916504, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14420.423030853271, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,324", - "created": 1614535184.324711, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 324.7110843658447, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14420.642137527466, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:44,324", - "created": 1614535184.324913, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 324.91302490234375, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14420.844078063965, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:44,325", - "created": 1614535184.325592, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 325.592041015625, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14421.523094177246, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:44,325", - "created": 1614535184.325863, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 325.8628845214844, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14421.793937683105, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "__callback__" - ], - "asctime": "2021-02-28 18:59:44,326", - "created": 1614535184.326144, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback__ to process received data", - "module": "__init__", - "msecs": 326.1439800262451, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14422.075033187866, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:44,326", - "created": 1614535184.326305, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 326.3049125671387, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14422.23596572876, - "thread": 139997730559744, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:44,329", - "created": 1614535184.329843, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 329.84304428100586, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14425.774097442627, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:44,330", - "created": 1614535184.330102, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 330.10196685791016, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.033020019531, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,330", - "created": 1614535184.330208, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 330.20806312561035, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.139116287231, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:44,330", - "created": 1614535184.330309, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 330.3089141845703, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.239967346191, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,330", - "created": 1614535184.330451, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 330.45101165771484, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.382064819336, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,330", - "created": 1614535184.330551, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 330.5509090423584, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.48196220398, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,330", - "created": 1614535184.33069, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 330.6899070739746, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.620960235596, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,330", - "created": 1614535184.330787, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 330.78694343566895, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.71799659729, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,330", - "created": 1614535184.330918, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 330.9180736541748, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.849126815796, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,331", - "created": 1614535184.331008, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 331.0079574584961, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14426.939010620117, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,331", - "created": 1614535184.33118, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 331.1800956726074, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14427.111148834229, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,331", - "created": 1614535184.331269, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 331.2690258026123, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14427.200078964233, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-server:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,331", - "created": 1614535184.331431, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 331.43091201782227, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14427.361965179443, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-client:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,331", - "created": 1614535184.331529, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 331.528902053833, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14427.459955215454, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,331", - "created": 1614535184.331617, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 331.6171169281006, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14427.548170089722, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:44,331", - "created": 1614535184.331695, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 331.6950798034668, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14427.626132965088, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" - ], - "asctime": "2021-02-28 18:59:44,331", - "created": 1614535184.331864, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "stp", - "msecs": 331.8641185760498, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14427.79517173767, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:44,332", - "created": 1614535184.332024, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 332.02409744262695, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14427.955150604248, - "thread": 139997722167040, - "threadName": "Thread-22" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:44,332", - "created": 1614535184.332141, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 332.1409225463867, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14428.071975708008, - "thread": 139997722167040, - "threadName": "Thread-22" - } - ], - "msecs": 497.905969619751, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14593.837022781372, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.16576504707336426 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:44,499", - "created": 1614535184.499217, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:44,498", - "created": 1614535184.498636, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 498.63600730895996, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14594.567060470581, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:44,498", - "created": 1614535184.498945, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 498.9449977874756, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14594.876050949097, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 499.21703338623047, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14595.148086547852, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002720355987548828 - }, - { - "args": [ - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:44,500", - "created": 1614535184.500142, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:44,499", - "created": 1614535184.499647, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", - "module": "test", - "msecs": 499.6469020843506, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14595.577955245972, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:44,499", - "created": 1614535184.499901, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", - "module": "test", - "msecs": 499.90105628967285, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14595.832109451294, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 500.14209747314453, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14596.073150634766, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002410411834716797 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.5564131736755371, - "time_finished": "2021-02-28 18:59:44,500", - "time_start": "2021-02-28 18:59:43,943" - }, - "_XzMFcHYZEem_kd-7nxt1sg": { - "args": null, - "asctime": "2021-02-28 18:59:29,954", - "created": 1614535169.954174, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 26, - "message": "_XzMFcHYZEem_kd-7nxt1sg", - "module": "__init__", - "moduleLogger": [], - "msecs": 954.1740417480469, - "msg": "_XzMFcHYZEem_kd-7nxt1sg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.10509490966797, - "testcaseLogger": [ - { - "args": [ - "{'status': None, 'service_id': None, 'data': None, 'data_id': None}" - ], - "asctime": "2021-02-28 18:59:29,954", - "created": 1614535169.954409, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 10, - "message": "Creating empty message object: {'status': None, 'service_id': None, 'data': None, 'data_id': None}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 954.4088840484619, - "msg": "Creating empty message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.33993721008301, - "thread": 139999152072512, + "relativeCreated": 55.031776428222656, + "stack_info": null, + "thread": 140631409799232, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -41139,99783 +1561,14 @@ "args": [ "'status'" ], - "asctime": "2021-02-28 18:59:29,954", - "created": 1614535169.954718, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.1515565, "exc_text": null, "filename": "test.py", "funcName": "in_list_dict_chk", "levelname": "INFO", "levelno": 20, - "lineno": 242, - "message": "status is part of the message object is correct ('status' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "status is part of the message object", - "{'status': None, 'service_id': None, 'data': None, 'data_id': None}", - "" - ], - "asctime": "2021-02-28 18:59:29,954", - "created": 1614535169.954589, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (status is part of the message object): {'status': None, 'service_id': None, 'data': None, 'data_id': None} ()", - "module": "test", - "msecs": 954.5888900756836, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.51994323730469, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "status is part of the message object", - "'status'" - ], - "asctime": "2021-02-28 18:59:29,954", - "created": 1614535169.954661, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (status is part of the message object): 'status' in result", - "module": "test", - "msecs": 954.6608924865723, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.59194564819336, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 954.7181129455566, - "msg": "status is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.649166107177734, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 5.7220458984375e-05 - }, - { - "args": [ - "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}" - ], - "asctime": "2021-02-28 18:59:29,954", - "created": 1614535169.95482, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Creating a maximum message object: {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 954.819917678833, - "msg": "Creating a maximum message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.7509708404541, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'status'" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955011, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "status is part of the message object is correct ('status' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "status is part of the message object", - "{'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'}", - "" - ], - "asctime": "2021-02-28 18:59:29,954", - "created": 1614535169.954911, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (status is part of the message object): {'status': 'S', 'service_id': 'SID', 'data': 'D', 'data_id': 'DID'} ()", - "module": "test", - "msecs": 954.9109935760498, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.8420467376709, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "status is part of the message object", - "'status'" - ], - "asctime": "2021-02-28 18:59:29,954", - "created": 1614535169.954963, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (status is part of the message object): 'status' in result", - "module": "test", - "msecs": 954.962968826294, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.89402198791504, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 955.0108909606934, - "msg": "status is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 50.94194412231445, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.792213439941406e-05 - }, - { - "args": [ - "'S'", - "" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.9552, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Content in message object for status is correct (Content 'S' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Content in message object for status", - "'S'", - "" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.9551, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Content in message object for status): 'S' ()", - "module": "test", - "msecs": 955.1000595092773, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.03111267089844, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Content in message object for status", - "'S'", - "" - ], - "asctime": "2021-02-28 18:59:29,955", - "created": 1614535169.955151, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Content in message object for status): result = 'S' ()", - "module": "test", - "msecs": 955.1510810852051, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.08213424682617, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 955.1999568939209, - "msg": "Content in message object for status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 51.13101005554199, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 4.887580871582031e-05 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0010259151458740234, - "time_finished": "2021-02-28 18:59:29,955", - "time_start": "2021-02-28 18:59:29,954" - }, - "_YfrfUE4LEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 18:59:44,500", - "created": 1614535184.500849, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 47, - "message": "_YfrfUE4LEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 500.84900856018066, - "msg": "_YfrfUE4LEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14596.780061721802, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509401, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:44,502", - "created": 1614535184.502042, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 502.0420551300049, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14597.973108291626, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:44,503", - "created": 1614535184.503216, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 503.216028213501, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14599.147081375122, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:44,503", - "created": 1614535184.503586, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 503.5860538482666, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14599.517107009888, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:44,504", - "created": 1614535184.504286, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 504.2860507965088, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14600.21710395813, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:44,504", - "created": 1614535184.504572, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 504.57191467285156, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14600.502967834473, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:44,504", - "created": 1614535184.504886, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 504.8859119415283, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14600.81696510315, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:44,505", - "created": 1614535184.505113, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 505.112886428833, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14601.043939590454, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:44,505", - "created": 1614535184.505326, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 505.3260326385498, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14601.25708580017, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:44,505", - "created": 1614535184.505803, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 505.80310821533203, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14601.734161376953, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.506075, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 506.0749053955078, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.005958557129, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.506289, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 506.289005279541, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.220058441162, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.506378, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 506.3779354095459, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.308988571167, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.506469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 506.4690113067627, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.400064468384, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.50656, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 506.5600872039795, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.4911403656, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.506662, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 506.66189193725586, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.592945098877, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.506765, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 506.76488876342773, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.695941925049, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.506854, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 506.8540573120117, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.785110473633, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:44,506", - "created": 1614535184.506949, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 506.94894790649414, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.880001068115, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:44,507", - "created": 1614535184.50705, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 507.0500373840332, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14602.981090545654, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:44,507", - "created": 1614535184.50714, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 507.1399211883545, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14603.070974349976, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:44,507", - "created": 1614535184.507229, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 507.2290897369385, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14603.16014289856, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:44,507", - "created": 1614535184.507313, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 507.3130130767822, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14603.244066238403, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:44,507", - "created": 1614535184.507402, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 507.4019432067871, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14603.332996368408, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:44,507", - "created": 1614535184.507766, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 507.7660083770752, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14603.697061538696, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:44,507", - "created": 1614535184.507892, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 507.8918933868408, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14603.822946548462, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508012, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 508.012056350708, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14603.94310951233, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508097, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 508.09693336486816, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.02798652649, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508174, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 508.17394256591797, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.104995727539, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.50825, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 508.24999809265137, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.181051254272, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508332, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 508.3320140838623, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.263067245483, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508411, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 508.4109306335449, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.341983795166, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508487, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 508.4869861602783, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.4180393219, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508563, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 508.5630416870117, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.494094848633, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508636, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 508.6359977722168, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.567050933838, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508718, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 508.71801376342773, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.649066925049, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508807, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 508.8069438934326, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.737997055054, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508881, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 508.8810920715332, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.812145233154, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:44,508", - "created": 1614535184.508953, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 508.9530944824219, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.884147644043, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509028, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 509.02795791625977, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14604.95901107788, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509111, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 509.1109275817871, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.041980743408, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509182, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 509.1819763183594, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.11302947998, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509264, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 509.2639923095703, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.195045471191, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509334, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 509.3340873718262, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.265140533447, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 509.4010829925537, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.332136154175, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 6.699562072753906e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:44,853", - "created": 1614535184.853489, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509539, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 509.5388889312744, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.469942092896, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509612, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 509.6120834350586, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.54313659668, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509695, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 509.69505310058594, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.626106262207, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:44,509", - "created": 1614535184.509812, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 509.8121166229248, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.743169784546, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:44,510", - "created": 1614535184.51003, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 510.03003120422363, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14605.961084365845, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:44,510", - "created": 1614535184.510116, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 510.1161003112793, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14606.0471534729, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:44,510", - "created": 1614535184.510187, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 510.18691062927246, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14606.117963790894, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:44,511", - "created": 1614535184.511898, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 511.8980407714844, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14607.829093933105, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:44,512", - "created": 1614535184.512112, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 512.1119022369385, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.04295539856, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,512", - "created": 1614535184.512216, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 512.2160911560059, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.147144317627, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:44,512", - "created": 1614535184.512302, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 512.3019218444824, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.232975006104, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,512", - "created": 1614535184.512413, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 512.4130249023438, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.344078063965, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,512", - "created": 1614535184.512494, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 512.4940872192383, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.42514038086, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,512", - "created": 1614535184.512615, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 512.6149654388428, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.546018600464, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,512", - "created": 1614535184.512718, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 512.7179622650146, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.649015426636, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,512", - "created": 1614535184.512874, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 512.8738880157471, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.804941177368, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,513", - "created": 1614535184.513026, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 513.0259990692139, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14608.957052230835, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,513", - "created": 1614535184.513203, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 513.2029056549072, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14609.133958816528, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,513", - "created": 1614535184.513336, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 513.3359432220459, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14609.266996383667, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,513", - "created": 1614535184.513552, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 513.5519504547119, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14609.483003616333, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,513", - "created": 1614535184.513764, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 513.7639045715332, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14609.694957733154, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,513", - "created": 1614535184.513964, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 513.9639377593994, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14609.89499092102, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:44,514", - "created": 1614535184.514051, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 514.0509605407715, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14609.982013702393, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:44,514", - "created": 1614535184.514218, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 514.2180919647217, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14610.149145126343, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:44,514", - "created": 1614535184.514402, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 514.401912689209, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14610.33296585083, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:44,514", - "created": 1614535184.514494, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 514.4939422607422, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14610.424995422363, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:44,514", - "created": 1614535184.514614, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 514.6141052246094, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14610.54515838623, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:44,519", - "created": 1614535184.519933, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 519.9329853057861, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14615.864038467407, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.520201, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 520.2009677886963, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.132020950317, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.520306, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 520.3061103820801, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.237163543701, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.520395, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 520.395040512085, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.326093673706, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.520507, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 520.5070972442627, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.438150405884, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.520589, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 520.5891132354736, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.520166397095, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.5207, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 520.6999778747559, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.631031036377, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.520777, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 520.7769870758057, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.708040237427, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.520886, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 520.8859443664551, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.816997528076, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,520", - "created": 1614535184.520964, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 520.9639072418213, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.894960403442, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.521068, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 521.0680961608887, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14616.99914932251, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.521142, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 521.1420059204102, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14617.073059082031, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.521269, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 521.2690830230713, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14617.200136184692, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.521368, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 521.3680267333984, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14617.29907989502, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.521455, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 521.4550495147705, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14617.386102676392, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.521531, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 521.5311050415039, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14617.462158203125, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.521708, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 521.7080116271973, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14617.639064788818, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.5219, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 521.899938583374, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14617.830991744995, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:44,521", - "created": 1614535184.521992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 521.9919681549072, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14617.923021316528, - "thread": 139997705381632, - "threadName": "Thread-24" - } - ], - "msecs": 853.4889221191406, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14949.419975280762, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3314969539642334 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:44,854", - "created": 1614535184.854449, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_sid_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 145, - "message": "Registering a correct working Callback", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback__'", - "None", - "0" - ], - "asctime": "2021-02-28 18:59:44,854", - "created": 1614535184.854209, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback__' for SID=None and DID=0", - "module": "__init__", - "msecs": 854.2089462280273, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14950.139999389648, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 854.4490337371826, - "msg": "Registering a correct working Callback", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14950.380086898804, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024008750915527344 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:45,056", - "created": 1614535185.05621, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_sid_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 148, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:44,854", - "created": 1614535184.854853, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 854.8529148101807, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14950.783967971802, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:44,880", - "created": 1614535184.880334, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 880.3339004516602, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14976.264953613281, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:44,880", - "created": 1614535184.880938, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 880.9380531311035, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14976.869106292725, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,881", - "created": 1614535184.881229, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 881.2289237976074, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14977.159976959229, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:44,881", - "created": 1614535184.881456, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 881.4558982849121, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14977.386951446533, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,881", - "created": 1614535184.881783, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 881.7830085754395, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14977.71406173706, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,882", - "created": 1614535184.882006, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 882.0059299468994, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14977.93698310852, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,882", - "created": 1614535184.882302, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 882.3020458221436, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14978.233098983765, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,882", - "created": 1614535184.882502, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 882.5020790100098, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14978.43313217163, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,883", - "created": 1614535184.883178, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 883.1779956817627, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14979.109048843384, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,883", - "created": 1614535184.883578, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 883.5780620574951, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14979.509115219116, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,883", - "created": 1614535184.883956, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 883.9559555053711, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14979.887008666992, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,884", - "created": 1614535184.884402, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 884.4020366668701, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14980.333089828491, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,884", - "created": 1614535184.88481, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 884.8099708557129, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14980.741024017334, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,885", - "created": 1614535184.885083, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 885.0829601287842, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14981.014013290405, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,885", - "created": 1614535184.885327, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 885.3271007537842, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14981.258153915405, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:44,885", - "created": 1614535184.885559, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 885.55908203125, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14981.490135192871, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:44,886", - "created": 1614535184.886017, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 886.0170841217041, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14981.948137283325, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:44,886", - "created": 1614535184.8864, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 886.3999843597412, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14982.331037521362, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "__callback__" - ], - "asctime": "2021-02-28 18:59:44,886", - "created": 1614535184.886789, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback__ to process received data", - "module": "__init__", - "msecs": 886.789083480835, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14982.720136642456, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:44,886", - "created": 1614535184.886926, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 886.9259357452393, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14982.85698890686, - "thread": 139997713774336, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:44,887", - "created": 1614535184.887773, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 887.7730369567871, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14983.704090118408, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:44,887", - "created": 1614535184.887961, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 887.9609107971191, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14983.89196395874, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.888047, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 888.0469799041748, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14983.978033065796, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.88812, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 888.1199359893799, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.050989151001, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.888206, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 888.2060050964355, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.137058258057, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.888292, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 888.2920742034912, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.223127365112, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.888404, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 888.4038925170898, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.334945678711, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.888481, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 888.4809017181396, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.41195487976, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.88859, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 888.5900974273682, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.52115058899, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.888664, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 888.6640071868896, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.59506034851, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.888772, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 888.7720108032227, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.703063964844, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.888848, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 888.848066329956, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.779119491577, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-server:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,888", - "created": 1614535184.88899, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 888.9899253845215, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14984.920978546143, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-client:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:44,889", - "created": 1614535184.889081, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 889.0810012817383, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14985.01205444336, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:44,889", - "created": 1614535184.88917, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 889.1699314117432, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14985.100984573364, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:44,889", - "created": 1614535184.88926, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 889.2600536346436, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14985.191106796265, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" - ], - "asctime": "2021-02-28 18:59:44,889", - "created": 1614535184.889421, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "stp", - "msecs": 889.4209861755371, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14985.352039337158, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:44,889", - "created": 1614535184.889593, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 889.5928859710693, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14985.52393913269, - "thread": 139997705381632, - "threadName": "Thread-24" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:44,889", - "created": 1614535184.889724, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 889.7240161895752, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14985.655069351196, - "thread": 139997705381632, - "threadName": "Thread-24" - } - ], - "msecs": 56.21004104614258, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15152.141094207764, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.16648602485656738 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,057", - "created": 1614535185.05753, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,056", - "created": 1614535185.056987, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 56.98704719543457, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15152.918100357056, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,057", - "created": 1614535185.057271, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 57.27100372314453, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15153.202056884766, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 57.52992630004883, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15153.46097946167, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002589225769042969 - }, - { - "args": [ - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,058", - "created": 1614535185.058403, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,057", - "created": 1614535185.05796, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", - "module": "test", - "msecs": 57.96003341674805, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15153.89108657837, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,058", - "created": 1614535185.058186, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", - "module": "test", - "msecs": 58.18605422973633, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15154.117107391357, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 58.40301513671875, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15154.33406829834, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00021696090698242188 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.5575540065765381, - "time_finished": "2021-02-28 18:59:45,058", - "time_start": "2021-02-28 18:59:44,500" - }, - "_YhmzIE4lEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 18:59:48,663", - "created": 1614535188.663157, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 59, - "message": "_YhmzIE4lEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 663.1569862365723, - "msg": "_YhmzIE4lEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18759.088039398193, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668838, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:48,663", - "created": 1614535188.663736, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 663.73610496521, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18759.66715812683, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:48,664", - "created": 1614535188.664151, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 664.1509532928467, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18760.082006454468, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:48,664", - "created": 1614535188.664251, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 664.2510890960693, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18760.18214225769, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:48,664", - "created": 1614535188.664454, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 664.4539833068848, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18760.385036468506, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:48,664", - "created": 1614535188.664574, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 664.5739078521729, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18760.504961013794, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:48,664", - "created": 1614535188.664722, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 664.7219657897949, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18760.653018951416, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:48,664", - "created": 1614535188.664825, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 664.8249626159668, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18760.756015777588, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:48,664", - "created": 1614535188.664927, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 664.9270057678223, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18760.858058929443, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:48,665", - "created": 1614535188.665019, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 665.0190353393555, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18760.950088500977, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:48,665", - "created": 1614535188.665118, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 665.1179790496826, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18761.049032211304, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:48,665", - "created": 1614535188.66522, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 665.2200222015381, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18761.15107536316, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:48,665", - "created": 1614535188.665318, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 665.3180122375488, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18761.24906539917, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:48,665", - "created": 1614535188.665419, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 665.4191017150879, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18761.35015487671, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:48,665", - "created": 1614535188.665525, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 665.524959564209, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18761.45601272583, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:48,665", - "created": 1614535188.665625, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 665.6250953674316, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18761.556148529053, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666065, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 666.064977645874, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18761.996030807495, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666165, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 666.1651134490967, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18762.096166610718, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666266, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 666.2659645080566, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18762.197017669678, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666368, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 666.3680076599121, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18762.299060821533, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666462, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 666.4619445800781, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18762.3929977417, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666551, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 666.5511131286621, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18762.482166290283, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666644, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 666.6440963745117, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18762.575149536133, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666736, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 666.7358875274658, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18762.666940689087, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:48,666", - "created": 1614535188.666977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 666.9769287109375, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18762.90798187256, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667078, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 667.0780181884766, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.009071350098, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667203, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 667.2029495239258, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.134002685547, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 667.2980785369873, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.22913169861, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667385, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 667.3851013183594, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.31615447998, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667475, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 667.4749851226807, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.4060382843, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667568, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 667.5679683685303, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.49902153015, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667663, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 667.6630973815918, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.594150543213, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667754, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 667.7539348602295, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.68498802185, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:48,667", - "created": 1614535188.667853, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 667.8531169891357, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.784170150757, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668001, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 668.0009365081787, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18763.9319896698, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668087, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 668.0870056152344, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.018058776855, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668184, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 668.1840419769287, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.11509513855, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668271, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 668.2710647583008, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.202117919922, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668354, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 668.3540344238281, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.28508758545, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.66844, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 668.4401035308838, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.371156692505, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668522, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 668.5218811035156, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.452934265137, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668605, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 668.6050891876221, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.536142349243, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.66868, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 668.67995262146, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.61100578308, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668757, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 668.7569618225098, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.68801498413, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 668.8380241394043, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.769077301025, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 8.106231689453125e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:49,012", - "created": 1614535189.012845, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:48,668", - "created": 1614535188.668995, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 668.9949035644531, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18764.925956726074, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:48,669", - "created": 1614535188.669069, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 669.0690517425537, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18765.000104904175, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:48,669", - "created": 1614535188.669142, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 669.1420078277588, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18765.07306098938, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:48,669", - "created": 1614535188.669267, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 669.266939163208, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18765.19799232483, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:48,669", - "created": 1614535188.669439, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 669.4390773773193, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18765.37013053894, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:48,669", - "created": 1614535188.669529, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 669.5289611816406, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18765.46001434326, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:48,669", - "created": 1614535188.669612, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 669.611930847168, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18765.54298400879, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" - ], - "asctime": "2021-02-28 18:59:48,670", - "created": 1614535188.670056, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", - "module": "__init__", - "msecs": 670.0561046600342, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18765.987157821655, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "comm-server:", - "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" - ], - "asctime": "2021-02-28 18:59:48,670", - "created": 1614535188.670232, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", - "module": "__init__", - "msecs": 670.2320575714111, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18766.163110733032, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,670", - "created": 1614535188.670343, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 670.3429222106934, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18766.273975372314, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:48,670", - "created": 1614535188.670438, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 670.4380512237549, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18766.369104385376, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,670", - "created": 1614535188.670583, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 670.5830097198486, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18766.51406288147, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:48,670", - "created": 1614535188.670672, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 670.6719398498535, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18766.602993011475, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - "(17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13" - ], - "asctime": "2021-02-28 18:59:48,670", - "created": 1614535188.670786, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13", - "module": "stp", - "msecs": 670.7859039306641, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18766.716957092285, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:48,670", - "created": 1614535188.670991, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 670.9909439086914, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18766.921997070312, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:48,671", - "created": 1614535188.671098, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 671.097993850708, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.02904701233, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:48,671", - "created": 1614535188.671234, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 671.2338924407959, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.164945602417, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "comm-server:", - "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" - ], - "asctime": "2021-02-28 18:59:48,671", - "created": 1614535188.671528, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", - "module": "__init__", - "msecs": 671.5281009674072, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.45915412903, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "comm-client:", - "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" - ], - "asctime": "2021-02-28 18:59:48,671", - "created": 1614535188.671644, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", - "module": "__init__", - "msecs": 671.6439723968506, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.57502555847, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,671", - "created": 1614535188.671714, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 671.7140674591064, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.645120620728, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:48,671", - "created": 1614535188.671783, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 671.7829704284668, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.714023590088, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,671", - "created": 1614535188.671873, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 671.8730926513672, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.80414581299, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:48,671", - "created": 1614535188.671936, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 671.93603515625, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.86708831787, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - "(17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12" - ], - "asctime": "2021-02-28 18:59:48,672", - "created": 1614535188.672044, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12", - "module": "stp", - "msecs": 672.044038772583, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18767.975091934204, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:48,672", - "created": 1614535188.672189, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 672.1889972686768, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18768.120050430298, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:48,672", - "created": 1614535188.672267, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 672.266960144043, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18768.198013305664, - "thread": 139996648425216, - "threadName": "Thread-36" - } - ], - "msecs": 12.845039367675781, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19108.776092529297, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3405780792236328 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:49,214", - "created": 1614535189.214973, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "send_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 53, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:49,013", - "created": 1614535189.013541, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 13.540983200073242, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19109.472036361694, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" - ], - "asctime": "2021-02-28 18:59:49,036", - "created": 1614535189.036865, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", - "module": "__init__", - "msecs": 36.8649959564209, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19132.796049118042, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "comm-server:", - "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" - ], - "asctime": "2021-02-28 18:59:49,037", - "created": 1614535189.037601, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", - "module": "__init__", - "msecs": 37.60099411010742, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19133.53204727173, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:49,037", - "created": 1614535189.037962, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 37.96195983886719, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19133.89301300049, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:49,038", - "created": 1614535189.038218, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 38.218021392822266, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19134.149074554443, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:49,039", - "created": 1614535189.03935, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 39.350032806396484, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19135.281085968018, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:49,039", - "created": 1614535189.039667, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 39.66689109802246, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19135.597944259644, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - "(41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d" - ], - "asctime": "2021-02-28 18:59:49,040", - "created": 1614535189.040197, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", - "module": "stp", - "msecs": 40.196895599365234, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19136.127948760986, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "u'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:49,040", - "created": 1614535189.040505, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 40.50493240356445, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19136.435985565186, - "thread": 139996656817920, - "threadName": "Thread-35" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:49,040", - "created": 1614535189.040645, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 40.64488410949707, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19136.575937271118, - "thread": 139996656817920, - "threadName": "Thread-35" - } - ], - "msecs": 214.97297286987305, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19310.904026031494, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.17432808876037598 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:49,215", - "created": 1614535189.215928, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:49,215", - "created": 1614535189.21552, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 215.51990509033203, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19311.450958251953, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:49,215", - "created": 1614535189.215739, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 215.73901176452637, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19311.670064926147, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 215.9280776977539, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19311.859130859375, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00018906593322753906 - }, - { - "args": [ - "{'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:49,216", - "created": 1614535189.216605, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:49,216", - "created": 1614535189.216235, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {'status': 0, 'service_id': 17, 'data': u'msg1_data_to_be_transfered', 'data_id': 34} ()", - "module": "test", - "msecs": 216.23492240905762, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19312.16597557068, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:49,216", - "created": 1614535189.216425, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'status': 0, 'service_id': 17, 'data': 'msg1_data_to_be_transfered', 'data_id': 34} ()", - "module": "test", - "msecs": 216.42494201660156, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19312.355995178223, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 216.60494804382324, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19312.536001205444, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0001800060272216797 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:49,418", - "created": 1614535189.418315, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "send_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 59, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:49,217", - "created": 1614535189.217007, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 217.00692176818848, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19312.93797492981, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" - ], - "asctime": "2021-02-28 18:59:49,237", - "created": 1614535189.237696, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", - "module": "__init__", - "msecs": 237.69593238830566, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19333.626985549927, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "comm-client:", - "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" - ], - "asctime": "2021-02-28 18:59:49,238", - "created": 1614535189.238385, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", - "module": "__init__", - "msecs": 238.38496208190918, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19334.31601524353, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:49,238", - "created": 1614535189.238679, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 238.6789321899414, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19334.609985351562, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:49,239", - "created": 1614535189.239272, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 239.2721176147461, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19335.203170776367, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:49,240", - "created": 1614535189.240008, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 240.00811576843262, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19335.939168930054, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:49,240", - "created": 1614535189.240343, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 240.3430938720703, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19336.27414703369, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - "(41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b" - ], - "asctime": "2021-02-28 18:59:49,240", - "created": 1614535189.240772, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "module": "stp", - "msecs": 240.77200889587402, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19336.703062057495, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "u'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:49,241", - "created": 1614535189.241386, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 241.38593673706055, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19337.31698989868, - "thread": 139996648425216, - "threadName": "Thread-36" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:49,242", - "created": 1614535189.242408, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 242.40803718566895, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19338.33909034729, - "thread": 139996648425216, - "threadName": "Thread-36" - } - ], - "msecs": 418.31493377685547, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19514.245986938477, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.17590689659118652 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:49,419", - "created": 1614535189.41929, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:49,418", - "created": 1614535189.418867, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 418.8671112060547, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19514.798164367676, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:49,419", - "created": 1614535189.419085, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 419.0850257873535, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19515.016078948975, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 419.29006576538086, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19515.221118927002, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00020503997802734375 - }, - { - "args": [ - "{'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:49,419", - "created": 1614535189.419989, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content {'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "{'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:49,419", - "created": 1614535189.419601, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): {'status': 4, 'service_id': 17, 'data': u'msg2_data_to_be_transfered', 'data_id': 35} ()", - "module": "test", - "msecs": 419.6009635925293, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19515.53201675415, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "{'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35}", - "" - ], - "asctime": "2021-02-28 18:59:49,419", - "created": 1614535189.419804, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = {'status': 4, 'service_id': 17, 'data': 'msg2_data_to_be_transfered', 'data_id': 35} ()", - "module": "test", - "msecs": 419.8040962219238, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19515.735149383545, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 419.98910903930664, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 19515.920162200928, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.7568321228027344, - "time_finished": "2021-02-28 18:59:49,419", - "time_start": "2021-02-28 18:59:48,663" - }, - "_ZJMD8EzaEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:30,716", - "created": 1614535170.716183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 34, - "message": "_ZJMD8EzaEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 716.1829471588135, - "msg": "_ZJMD8EzaEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 812.1140003204346, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:30,732", - "created": 1614535170.732651, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:30,717", - "created": 1614535170.717555, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 717.555046081543, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 813.4860992431641, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:30,718", - "created": 1614535170.718985, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 718.9850807189941, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 814.9161338806152, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:30,719", - "created": 1614535170.719349, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 719.3489074707031, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 815.2799606323242, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:30,719", - "created": 1614535170.71994, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 719.9399471282959, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 815.871000289917, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:30,720", - "created": 1614535170.720256, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 720.2560901641846, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 816.1871433258057, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:30,720", - "created": 1614535170.720698, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 720.6981182098389, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 816.62917137146, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:30,720", - "created": 1614535170.720957, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 720.9570407867432, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 816.8880939483643, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:30,721", - "created": 1614535170.721217, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 721.2169170379639, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 817.147970199585, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:30,721", - "created": 1614535170.721464, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 721.4639186859131, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 817.3949718475342, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:30,721", - "created": 1614535170.721825, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 721.8248844146729, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 817.755937576294, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:30,722", - "created": 1614535170.722121, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 722.121000289917, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 818.0520534515381, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:30,722", - "created": 1614535170.722387, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 722.3870754241943, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 818.3181285858154, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:30,722", - "created": 1614535170.722709, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 722.7089405059814, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 818.6399936676025, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:30,722", - "created": 1614535170.722927, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 722.9270935058594, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 818.8581466674805, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:30,723", - "created": 1614535170.723197, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 723.1969833374023, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 819.1280364990234, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:30,723", - "created": 1614535170.723486, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 723.4859466552734, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 819.4169998168945, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:30,723", - "created": 1614535170.7237, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 723.7000465393066, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 819.6310997009277, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:30,723", - "created": 1614535170.723925, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 723.9251136779785, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 819.8561668395996, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:30,724", - "created": 1614535170.724138, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 724.1380214691162, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 820.0690746307373, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:30,724", - "created": 1614535170.724376, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 724.3759632110596, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 820.3070163726807, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:30,724", - "created": 1614535170.724581, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 724.5810031890869, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 820.512056350708, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:30,724", - "created": 1614535170.724781, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 724.7810363769531, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 820.7120895385742, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:30,724", - "created": 1614535170.724992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 724.992036819458, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 820.9230899810791, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:30,728", - "created": 1614535170.728593, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 728.593111038208, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 824.5241641998291, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:30,728", - "created": 1614535170.728879, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 728.8789749145508, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 824.8100280761719, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:30,729", - "created": 1614535170.72923, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 729.2299270629883, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 825.1609802246094, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:30,729", - "created": 1614535170.72943, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 729.4299602508545, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 825.3610134124756, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:30,729", - "created": 1614535170.729613, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 729.6130657196045, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 825.5441188812256, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:30,729", - "created": 1614535170.729815, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 729.8150062561035, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 825.7460594177246, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:30,730", - "created": 1614535170.730003, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 730.0031185150146, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 825.9341716766357, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:30,730", - "created": 1614535170.730196, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 730.1959991455078, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 826.1270523071289, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:30,730", - "created": 1614535170.730425, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 730.4248809814453, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 826.3559341430664, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:30,730", - "created": 1614535170.730615, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 730.6149005889893, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 826.5459537506104, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:30,730", - "created": 1614535170.730776, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 730.7760715484619, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 826.707124710083, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:30,730", - "created": 1614535170.730968, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 730.9679985046387, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 826.8990516662598, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:30,731", - "created": 1614535170.731175, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 731.1749458312988, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 827.1059989929199, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:30,731", - "created": 1614535170.731362, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 731.3621044158936, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 827.2931575775146, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:30,731", - "created": 1614535170.731542, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 731.5421104431152, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 827.4731636047363, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:30,731", - "created": 1614535170.731746, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 731.7459583282471, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 827.6770114898682, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:30,731", - "created": 1614535170.731923, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 731.9231033325195, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 827.8541564941406, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:30,732", - "created": 1614535170.732101, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 732.1009635925293, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 828.0320167541504, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:30,732", - "created": 1614535170.732266, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 732.2659492492676, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 828.1970024108887, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:30,732", - "created": 1614535170.732443, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 732.44309425354, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 828.3741474151611, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 732.6509952545166, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 828.5820484161377, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002079010009765625 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:31,080", - "created": 1614535171.080248, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:30,733", - "created": 1614535170.733078, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 733.0780029296875, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 829.0090560913086, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:30,733", - "created": 1614535170.7333, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 733.299970626831, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 829.2310237884521, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:30,733", - "created": 1614535170.733515, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 733.5150241851807, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 829.4460773468018, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:30,733", - "created": 1614535170.733866, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 733.8659763336182, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 829.7970294952393, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:30,734", - "created": 1614535170.73453, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 734.529972076416, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 830.4610252380371, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:30,735", - "created": 1614535170.735121, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 735.1210117340088, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 831.0520648956299, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:30,735", - "created": 1614535170.735457, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 735.4569435119629, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 831.387996673584, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:30,736", - "created": 1614535170.736022, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 736.0219955444336, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 831.9530487060547, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:30,736", - "created": 1614535170.736335, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 736.335039138794, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 832.266092300415, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,736", - "created": 1614535170.736646, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 736.6459369659424, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 832.5769901275635, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:30,737", - "created": 1614535170.737032, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 737.0319366455078, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 832.9629898071289, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,737", - "created": 1614535170.737295, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 737.2949123382568, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 833.2259654998779, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,737", - "created": 1614535170.737495, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 737.494945526123, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 833.4259986877441, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,737", - "created": 1614535170.737664, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 737.663984298706, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 833.5950374603271, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,737", - "created": 1614535170.737768, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 737.7679347991943, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 833.6989879608154, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,737", - "created": 1614535170.737877, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 737.8768920898438, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 833.8079452514648, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,737", - "created": 1614535170.737959, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 737.9589080810547, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 833.8899612426758, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,738", - "created": 1614535170.738077, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 738.07692527771, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.007978439331, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,738", - "created": 1614535170.738164, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 738.163948059082, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.0950012207031, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:30,738", - "created": 1614535170.738332, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 738.3320331573486, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.2630863189697, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:30,738", - "created": 1614535170.738418, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 738.4181022644043, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.3491554260254, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,738", - "created": 1614535170.738494, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 738.4939193725586, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.4249725341797, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:30,738", - "created": 1614535170.738566, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 738.5659217834473, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.4969749450684, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:30,738", - "created": 1614535170.738713, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 738.7130260467529, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.644079208374, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:30,738", - "created": 1614535170.738921, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 738.9209270477295, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.8519802093506, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:30,739", - "created": 1614535170.739022, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 739.0220165252686, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 834.9530696868896, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:30,739", - "created": 1614535170.739145, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 739.145040512085, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 835.076093673706, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:30,754", - "created": 1614535170.754572, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 754.5719146728516, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 850.5029678344727, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:30,754", - "created": 1614535170.754875, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 754.8749446868896, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 850.8059978485107, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755004, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 755.0039291381836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 850.9349822998047, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755115, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 755.1150321960449, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 851.046085357666, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755258, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 755.2580833435059, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 851.189136505127, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755363, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 755.3629875183105, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 851.2940406799316, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755518, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 755.5179595947266, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 851.4490127563477, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755619, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 755.6190490722656, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 851.5501022338867, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755746, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 755.7458877563477, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 851.6769409179688, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755848, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 755.8479309082031, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 851.7789840698242, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,755", - "created": 1614535170.755988, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 755.9878826141357, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 851.9189357757568, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:30,756", - "created": 1614535170.756085, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 756.0849189758301, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 852.0159721374512, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:30,756", - "created": 1614535170.756239, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 756.2389373779297, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 852.1699905395508, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:30,756", - "created": 1614535170.756361, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 756.3610076904297, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 852.2920608520508, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:30,756", - "created": 1614535170.756473, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 756.4730644226074, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 852.4041175842285, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:30,756", - "created": 1614535170.75657, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 756.5701007843018, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 852.5011539459229, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:30,756", - "created": 1614535170.756788, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 756.7880153656006, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 852.7190685272217, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:30,757", - "created": 1614535170.757022, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 757.0219039916992, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 852.9529571533203, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:30,757", - "created": 1614535170.757137, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 757.1370601654053, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 853.0681133270264, - "thread": 139999105619712, - "threadName": "Thread-4" - } - ], - "msecs": 80.24811744689941, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1176.1791706085205, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.32311105728149414 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:31,383", - "created": 1614535171.383912, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "send_message_with_invalid_checksum", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 70, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:31,081", - "created": 1614535171.081221, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 81.22110366821289, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1177.152156829834, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:31,105", - "created": 1614535171.105764, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 105.76391220092773, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1201.6949653625488, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:31,106", - "created": 1614535171.106371, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 106.37092590332031, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1202.3019790649414, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,106", - "created": 1614535171.106623, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 106.62293434143066, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1202.5539875030518, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:31,106", - "created": 1614535171.106867, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 106.86707496643066, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1202.7981281280518, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,107", - "created": 1614535171.107246, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 107.24592208862305, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1203.1769752502441, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,107", - "created": 1614535171.107487, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 107.48696327209473, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1203.4180164337158, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,107", - "created": 1614535171.107995, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 107.99503326416016, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1203.9260864257812, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,108", - "created": 1614535171.108384, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 108.3838939666748, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1204.314947128296, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,108", - "created": 1614535171.108732, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 108.73198509216309, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1204.6630382537842, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,108", - "created": 1614535171.108987, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 108.98709297180176, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1204.9181461334229, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e" - ], - "asctime": "2021-02-28 18:59:31,109", - "created": 1614535171.109578, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e", - "module": "__init__", - "msecs": 109.57789421081543, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1205.5089473724365, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e" - ], - "asctime": "2021-02-28 18:59:31,110", - "created": 1614535171.110015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9c 3a 3e", - "module": "__init__", - "msecs": 110.0149154663086, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1205.9459686279297, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,110", - "created": 1614535171.110389, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 110.38899421691895, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1206.32004737854, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,110", - "created": 1614535171.110629, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 110.62908172607422, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1206.5601348876953, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,110", - "created": 1614535171.110908, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 110.90803146362305, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1206.8390846252441, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:31,111", - "created": 1614535171.111145, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 111.14501953125, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1207.076072692871, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - "(88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9c" - ], - "asctime": "2021-02-28 18:59:31,111", - "created": 1614535171.111695, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9c", - "module": "stp", - "msecs": 111.6950511932373, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1207.6261043548584, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:31,112", - "created": 1614535171.112177, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 465, - "message": "prot-server: Received message has an invalid checksum. Message will be ignored.", - "module": "__init__", - "msecs": 112.17689514160156, - "msg": "%s Received message has an invalid checksum. Message will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1208.1079483032227, - "thread": 139999114012416, - "threadName": "Thread-3" - }, - { - "args": [ - "prot-server:", - "0.28705533596837945", - "17", - "34" - ], - "asctime": "2021-02-28 18:59:31,383", - "created": 1614535171.383443, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", - "module": "__init__", - "msecs": 383.44311714172363, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1479.3741703033447, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 383.9120864868164, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1479.8431396484375, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00046896934509277344 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:31,384", - "created": 1614535171.384965, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:31,384", - "created": 1614535171.384447, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 384.4470977783203, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1480.3781509399414, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:31,384", - "created": 1614535171.38471, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 384.71007347106934, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1480.6411266326904, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 384.9649429321289, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1480.89599609375, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002548694610595703 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:31,385", - "created": 1614535171.385825, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Checksum Error -> No message received by server is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Checksum Error -> No message received by server", - "None", - "" - ], - "asctime": "2021-02-28 18:59:31,385", - "created": 1614535171.385338, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Checksum Error -> No message received by server): None ()", - "module": "test", - "msecs": 385.33806800842285, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1481.269121170044, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Checksum Error -> No message received by server", - "None", - "" - ], - "asctime": "2021-02-28 18:59:31,385", - "created": 1614535171.385559, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Checksum Error -> No message received by server): result = None ()", - "module": "test", - "msecs": 385.55908203125, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1481.490135192871, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 385.82491874694824, - "msg": "Checksum Error -> No message received by server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1481.7559719085693, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002658367156982422 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:31,688", - "created": 1614535171.688719, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "send_message_with_invalid_checksum", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 76, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:31,386", - "created": 1614535171.386336, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 386.336088180542, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1482.267141342163, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:31,391", - "created": 1614535171.391859, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 391.8590545654297, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1487.7901077270508, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:31,392", - "created": 1614535171.392452, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 392.4520015716553, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1488.3830547332764, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,392", - "created": 1614535171.392738, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 392.73810386657715, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1488.6691570281982, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:31,392", - "created": 1614535171.392968, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 392.96793937683105, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1488.8989925384521, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,393", - "created": 1614535171.393219, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 393.218994140625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1489.150047302246, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,393", - "created": 1614535171.393413, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 393.4130668640137, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1489.3441200256348, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,393", - "created": 1614535171.393724, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 393.7239646911621, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1489.6550178527832, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,393", - "created": 1614535171.393931, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 393.93091201782227, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1489.8619651794434, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,394", - "created": 1614535171.394165, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 394.1650390625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1490.096092224121, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,394", - "created": 1614535171.394345, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 394.3450450897217, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1490.2760982513428, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:31,394", - "created": 1614535171.394764, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 394.7639465332031, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1490.6949996948242, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e" - ], - "asctime": "2021-02-28 18:59:31,395", - "created": 1614535171.395058, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 7d 20 18 19 e8 3a 3e", - "module": "__init__", - "msecs": 395.05791664123535, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1490.9889698028564, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,395", - "created": 1614535171.395349, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 395.34902572631836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1491.2800788879395, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,395", - "created": 1614535171.395535, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 395.5349922180176, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1491.4660453796387, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,395", - "created": 1614535171.395751, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 395.7509994506836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1491.6820526123047, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:31,395", - "created": 1614535171.395927, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 395.92695236206055, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1491.8580055236816, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - "(88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8" - ], - "asctime": "2021-02-28 18:59:31,396", - "created": 1614535171.39639, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 35 7d 20 18 19 e8", - "module": "stp", - "msecs": 396.3899612426758, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1492.3210144042969, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "u'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:31,396", - "created": 1614535171.396881, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"u'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 396.881103515625, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1492.812156677246, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:31,397", - "created": 1614535171.397187, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 397.1869945526123, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1493.1180477142334, - "thread": 139999105619712, - "threadName": "Thread-4" - }, - { - "args": [ - "prot-server:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:31,688", - "created": 1614535171.688271, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 688.2710456848145, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1784.2020988464355, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 688.7190341949463, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1784.6500873565674, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00044798851013183594 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:31,689", - "created": 1614535171.689641, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:31,689", - "created": 1614535171.689204, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 689.2039775848389, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1785.13503074646, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:31,689", - "created": 1614535171.689433, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 689.4330978393555, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1785.3641510009766, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 689.640998840332, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1785.5720520019531, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002079010009765625 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:31,690", - "created": 1614535171.690427, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Checksum Error -> No message received by client is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Checksum Error -> No message received by client", - "None", - "" - ], - "asctime": "2021-02-28 18:59:31,690", - "created": 1614535171.690022, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Checksum Error -> No message received by client): None ()", - "module": "test", - "msecs": 690.0219917297363, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1785.9530448913574, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Checksum Error -> No message received by client", - "None", - "" - ], - "asctime": "2021-02-28 18:59:31,690", - "created": 1614535171.690221, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Checksum Error -> No message received by client): result = None ()", - "module": "test", - "msecs": 690.2210712432861, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1786.1521244049072, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 690.4270648956299, - "msg": "Checksum Error -> No message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1786.358118057251, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00020599365234375 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.9742441177368164, - "time_finished": "2021-02-28 18:59:31,690", - "time_start": "2021-02-28 18:59:30,716" - }, - "_ZOW3ME0vEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:42,614", - "created": 1614535182.614235, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 41, - "message": "_ZOW3ME0vEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 614.2349243164062, - "msg": "_ZOW3ME0vEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12710.165977478027, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622868, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:42,616", - "created": 1614535182.616073, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 616.0728931427002, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12712.003946304321, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:42,617", - "created": 1614535182.617926, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 617.9258823394775, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12713.856935501099, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:42,618", - "created": 1614535182.618293, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 618.293046951294, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12714.224100112915, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,618", - "created": 1614535182.618654, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 618.6540126800537, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12714.585065841675, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:42,618", - "created": 1614535182.618762, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 618.7620162963867, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12714.693069458008, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:42,618", - "created": 1614535182.618878, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 618.8778877258301, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12714.808940887451, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:42,618", - "created": 1614535182.618976, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 618.9761161804199, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12714.907169342041, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.619062, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 619.0619468688965, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12714.993000030518, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.619151, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 619.1511154174805, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.082168579102, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.619245, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 619.2450523376465, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.176105499268, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.61934, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 619.3399429321289, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.27099609375, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.619432, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 619.4319725036621, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.363025665283, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.61953, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 619.5299625396729, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.461015701294, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.619641, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 619.6410655975342, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.572118759155, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.619747, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 619.7469234466553, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.677976608276, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.619865, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 619.8649406433105, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.795993804932, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:42,619", - "created": 1614535182.619963, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 619.9629306793213, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.893983840942, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:42,620", - "created": 1614535182.620058, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 620.0580596923828, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12715.989112854004, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:42,620", - "created": 1614535182.620237, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 620.2371120452881, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12716.16816520691, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:42,620", - "created": 1614535182.620336, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 620.3360557556152, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12716.267108917236, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:42,620", - "created": 1614535182.620431, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 620.4309463500977, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12716.361999511719, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:42,620", - "created": 1614535182.620641, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 620.6409931182861, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12716.572046279907, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,620", - "created": 1614535182.620735, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 620.7349300384521, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12716.665983200073, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621105, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 621.1049556732178, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.036008834839, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621198, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 621.1979389190674, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.128992080688, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621299, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 621.2990283966064, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.230081558228, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621378, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 621.3779449462891, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.30899810791, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621448, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 621.4480400085449, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.379093170166, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621519, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 621.5190887451172, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.450141906738, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621594, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 621.5939521789551, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.525005340576, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621693, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 621.6928958892822, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.623949050903, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621811, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 621.8109130859375, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.741966247559, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:42,621", - "created": 1614535182.621936, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 621.9360828399658, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.867136001587, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622012, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 622.0118999481201, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12717.942953109741, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622147, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 622.1470832824707, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.078136444092, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622234, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 622.2341060638428, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.165159225464, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622309, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 622.3089694976807, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.240022659302, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622382, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 622.3819255828857, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.312978744507, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622457, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 622.4570274353027, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.388080596924, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 622.5330829620361, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.464136123657, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622605, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 622.6050853729248, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.536138534546, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622686, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 622.6859092712402, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.616962432861, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,622", - "created": 1614535182.622774, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 622.7738857269287, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.70493888855, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 622.8680610656738, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.799114227295, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 9.417533874511719e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,967", - "created": 1614535182.967066, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:42,623", - "created": 1614535182.623015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 623.0149269104004, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12718.945980072021, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:42,623", - "created": 1614535182.623096, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 623.0959892272949, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12719.027042388916, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,623", - "created": 1614535182.623168, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 623.1679916381836, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12719.099044799805, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:42,623", - "created": 1614535182.623305, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 623.305082321167, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12719.236135482788, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:42,623", - "created": 1614535182.623555, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 623.5549449920654, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12719.485998153687, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:42,623", - "created": 1614535182.623642, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 623.6419677734375, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12719.573020935059, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,623", - "created": 1614535182.623726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 623.7258911132812, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12719.656944274902, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:42,625", - "created": 1614535182.625265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 625.2648830413818, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12721.195936203003, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:42,625", - "created": 1614535182.625465, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 625.464916229248, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12721.39596939087, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,625", - "created": 1614535182.625569, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 625.5691051483154, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12721.500158309937, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:42,625", - "created": 1614535182.625667, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 625.6670951843262, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12721.598148345947, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,625", - "created": 1614535182.625784, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 625.7839202880859, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12721.714973449707, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,625", - "created": 1614535182.625868, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 625.8680820465088, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12721.79913520813, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,625", - "created": 1614535182.625981, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 625.9810924530029, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12721.912145614624, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626068, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 626.068115234375, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12721.999168395996, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626171, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 626.1711120605469, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.102165222168, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626246, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 626.2459754943848, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.177028656006, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626353, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 626.3530254364014, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.284078598022, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.62643, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 626.4300346374512, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.361087799072, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626562, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 626.5621185302734, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.493171691895, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626645, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 626.6450881958008, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.576141357422, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626723, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 626.723051071167, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.654104232788, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626788, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 626.7879009246826, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.718954086304, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:42,626", - "created": 1614535182.626942, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 626.9419193267822, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12722.872972488403, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:42,627", - "created": 1614535182.627149, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 627.1491050720215, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12723.080158233643, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:42,627", - "created": 1614535182.62727, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 627.269983291626, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12723.201036453247, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:42,627", - "created": 1614535182.627415, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 627.4149417877197, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12723.34599494934, - "thread": 139998242252544, - "threadName": "Thread-17" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:42,627", - "created": 1614535182.627873, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 627.8729438781738, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12723.803997039795, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628059, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 628.058910369873, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12723.989963531494, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628153, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 628.1530857086182, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.08413887024, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628237, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 628.2370090484619, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.168062210083, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628354, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 628.3540725708008, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.285125732422, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628473, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 628.4730434417725, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.404096603394, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628576, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 628.5760402679443, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.507093429565, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628655, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 628.654956817627, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.586009979248, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628769, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 628.7689208984375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.699974060059, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628881, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 628.8809776306152, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.812030792236, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,628", - "created": 1614535182.628975, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 628.9749145507812, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.905967712402, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,629", - "created": 1614535182.629038, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 629.0380954742432, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12724.969148635864, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,629", - "created": 1614535182.629149, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 629.1489601135254, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12725.080013275146, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,629", - "created": 1614535182.629242, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 629.241943359375, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12725.172996520996, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,629", - "created": 1614535182.629318, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 629.3179988861084, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12725.24905204773, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:42,629", - "created": 1614535182.629384, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 629.3840408325195, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12725.31509399414, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:42,629", - "created": 1614535182.629522, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 629.5220851898193, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12725.45313835144, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:42,629", - "created": 1614535182.629753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 629.7531127929688, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12725.68416595459, - "thread": 139998233859840, - "threadName": "Thread-18" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:42,629", - "created": 1614535182.629858, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 629.8580169677734, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12725.789070129395, - "thread": 139998233859840, - "threadName": "Thread-18" - } - ], - "msecs": 967.0660495758057, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13062.997102737427, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3372080326080322 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,968", - "created": 1614535182.968085, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service_existing_sid", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 334, - "message": "Adding a service with an already registered request SID", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - 10, - 18 - ], - "asctime": "2021-02-28 18:59:42,967", - "created": 1614535182.967806, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "ERROR", - "levelno": 40, - "lineno": 583, - "message": "prot-server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", - "module": "__init__", - "msecs": 967.8061008453369, - "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because request SID is already registered", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13063.737154006958, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 968.0850505828857, - "msg": "Adding a service with an already registered request SID", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13064.016103744507, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002789497375488281 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,968", - "created": 1614535182.968408, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service_existing_sid", - "levelname": "INFO", - "levelno": 20, - "lineno": 335, - "message": "Expected Exception RequestSidExistsError was triggered", - "module": "test_communication", - "moduleLogger": [], - "msecs": 968.4081077575684, - "msg": "Expected Exception RequestSidExistsError was triggered", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13064.33916091919, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,968", - "created": 1614535182.968945, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service_existing_sid", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 343, - "message": "Adding a service with an already registered response SID", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - 17, - 11 - ], - "asctime": "2021-02-28 18:59:42,968", - "created": 1614535182.968724, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "ERROR", - "levelno": 40, - "lineno": 586, - "message": "prot-server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", - "module": "__init__", - "msecs": 968.7240123748779, - "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because response SID is already registered", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13064.655065536499, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 968.9450263977051, - "msg": "Adding a service with an already registered response SID", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13064.876079559326, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00022101402282714844 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,969", - "created": 1614535182.96923, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service_existing_sid", - "levelname": "INFO", - "levelno": 20, - "lineno": 344, - "message": "Expected Exception ResponseSidExistsError was triggered", - "module": "test_communication", - "moduleLogger": [], - "msecs": 969.2299365997314, - "msg": "Expected Exception ResponseSidExistsError was triggered", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13065.160989761353, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3549950122833252, - "time_finished": "2021-02-28 18:59:42,969", - "time_start": "2021-02-28 18:59:42,614" - }, - "_aA508E4gEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 18:59:46,792", - "created": 1614535186.792053, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 53, - "message": "_aA508E4gEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 792.0529842376709, - "msg": "_aA508E4gEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16887.984037399292, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:46,802", - "created": 1614535186.802003, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:46,793", - "created": 1614535186.793563, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 793.5628890991211, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16889.493942260742, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:46,794", - "created": 1614535186.794399, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 794.3990230560303, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16890.33007621765, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:46,794", - "created": 1614535186.794524, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 794.5239543914795, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16890.4550075531, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:46,797", - "created": 1614535186.797988, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 797.9879379272461, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16893.918991088867, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:46,798", - "created": 1614535186.798134, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 798.1340885162354, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.065141677856, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:46,798", - "created": 1614535186.798298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 798.2978820800781, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.2289352417, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:46,798", - "created": 1614535186.798406, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 798.4058856964111, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.336938858032, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:46,798", - "created": 1614535186.798546, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 798.5460758209229, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.477128982544, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:46,798", - "created": 1614535186.798631, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 798.630952835083, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.562005996704, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:46,798", - "created": 1614535186.798726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 798.7260818481445, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.657135009766, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:46,798", - "created": 1614535186.798823, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 798.8231182098389, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.75417137146, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:46,798", - "created": 1614535186.798913, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 798.9130020141602, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.84405517578, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799022, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 799.0219593048096, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16894.95301246643, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799132, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 799.1321086883545, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.063161849976, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799248, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 799.2479801177979, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.17903327942, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799343, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 799.3431091308594, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.27416229248, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799461, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 799.4608879089355, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.391941070557, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799549, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 799.5491027832031, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.480155944824, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.79964, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 799.6399402618408, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.570993423462, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 799.7260093688965, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.657062530518, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.79981, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 799.8099327087402, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.74098587036, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799891, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 799.8909950256348, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.822048187256, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:46,799", - "created": 1614535186.799975, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 799.9749183654785, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16895.9059715271, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.80018, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 800.1799583435059, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.111011505127, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.800269, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 800.2688884735107, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.199941635132, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.800388, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 800.3880977630615, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.319150924683, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.800478, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 800.4779815673828, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.409034729004, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.800576, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 800.5759716033936, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.507024765015, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.800658, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 800.6579875946045, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.589040756226, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.800747, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 800.7469177246094, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.67797088623, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.800833, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 800.832986831665, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.764039993286, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:46,800", - "created": 1614535186.80092, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 800.9200096130371, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.85106277466, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801006, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 801.0060787200928, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16896.937131881714, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801085, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 801.0849952697754, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.016048431396, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801182, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 801.1820316314697, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.11308479309, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801295, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 801.2950420379639, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.226095199585, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801363, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 801.3629913330078, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.29404449463, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801432, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 801.4318943023682, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.36294746399, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.80152, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 801.5201091766357, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.451162338257, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801607, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 801.6068935394287, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.53794670105, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801723, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 801.7230033874512, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.654056549072, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801812, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 801.811933517456, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.742986679077, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:46,801", - "created": 1614535186.801919, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 801.9189834594727, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.850036621094, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 802.0029067993164, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16897.933959960938, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 8.392333984375e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:47,145", - "created": 1614535187.145836, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:46,802", - "created": 1614535186.802213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 802.2129535675049, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16898.144006729126, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:46,802", - "created": 1614535186.802302, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 802.3018836975098, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16898.23293685913, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:46,802", - "created": 1614535186.802385, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 802.3850917816162, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16898.316144943237, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:46,802", - "created": 1614535186.802518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 802.5178909301758, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16898.448944091797, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:46,802", - "created": 1614535186.802793, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 802.793025970459, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16898.72407913208, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:46,802", - "created": 1614535186.802888, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 802.8879165649414, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16898.818969726562, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:46,802", - "created": 1614535186.802978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 802.9780387878418, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16898.909091949463, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:46,804", - "created": 1614535186.80423, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 804.2299747467041, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.161027908325, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:46,804", - "created": 1614535186.80444, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 804.4400215148926, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.371074676514, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,804", - "created": 1614535186.804535, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 804.534912109375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.465965270996, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,804", - "created": 1614535186.804611, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 804.6109676361084, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.54202079773, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,804", - "created": 1614535186.804704, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 804.703950881958, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.63500404358, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,804", - "created": 1614535186.804792, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 804.7919273376465, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.722980499268, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,804", - "created": 1614535186.804885, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 804.8849105834961, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.815963745117, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,804", - "created": 1614535186.804949, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 804.9490451812744, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.880098342896, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.805027, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 805.0270080566406, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16900.95806121826, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.805105, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 805.1049709320068, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16901.036024093628, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.805247, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 805.2470684051514, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16901.178121566772, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.805363, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 805.3629398345947, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16901.293992996216, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.805499, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 805.4990768432617, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16901.430130004883, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.805579, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 805.5789470672607, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16901.510000228882, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.805675, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 805.6750297546387, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16901.60608291626, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.80575, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 805.7498931884766, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16901.680946350098, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:46,805", - "created": 1614535186.805896, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 805.8960437774658, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16901.827096939087, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:46,806", - "created": 1614535186.806102, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 806.1020374298096, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16902.03309059143, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:46,806", - "created": 1614535186.806211, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 806.210994720459, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16902.14204788208, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:46,806", - "created": 1614535186.806349, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 806.3490390777588, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16902.28009223938, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:46,813", - "created": 1614535186.81366, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 813.6599063873291, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16909.59095954895, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:46,813", - "created": 1614535186.813912, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 813.9119148254395, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16909.84296798706, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814011, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 814.0110969543457, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16909.942150115967, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814095, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 814.0950202941895, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.02607345581, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814202, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 814.202070236206, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.133123397827, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.81428, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 814.2800331115723, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.211086273193, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814393, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 814.3930435180664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.324096679688, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814491, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 814.4910335540771, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.4220867157, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814575, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 814.5749568939209, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.506010055542, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814639, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 814.6390914916992, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.57014465332, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814725, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 814.7249221801758, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.655975341797, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814794, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 814.7940635681152, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.725116729736, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814906, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 814.9058818817139, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.836935043335, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,814", - "created": 1614535186.814991, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 814.9909973144531, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16910.922050476074, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,815", - "created": 1614535186.815077, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 815.0770664215088, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16911.00811958313, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,815", - "created": 1614535186.815151, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 815.1509761810303, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16911.08202934265, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:46,815", - "created": 1614535186.815314, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 815.3140544891357, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16911.245107650757, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:46,815", - "created": 1614535186.815548, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 815.5479431152344, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16911.478996276855, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:46,815", - "created": 1614535186.815654, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 815.6540393829346, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16911.585092544556, - "thread": 139997176903424, - "threadName": "Thread-30" - } - ], - "msecs": 145.83611488342285, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17241.767168045044, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3301820755004883 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,147", - "created": 1614535187.147109, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,146", - "created": 1614535187.146615, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): True ()", - "module": "test", - "msecs": 146.61502838134766, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17242.54608154297, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,146", - "created": 1614535187.146884, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = True ()", - "module": "test", - "msecs": 146.88396453857422, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17242.815017700195, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 147.1090316772461, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17243.040084838867, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.000225067138671875 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,148", - "created": 1614535187.148308, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,147", - "created": 1614535187.14778, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): True ()", - "module": "test", - "msecs": 147.7799415588379, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17243.71099472046, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,148", - "created": 1614535187.148072, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = True ()", - "module": "test", - "msecs": 148.0720043182373, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17244.00305747986, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 148.30803871154785, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17244.23909187317, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00023603439331054688 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,149", - "created": 1614535187.149829, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,148", - "created": 1614535187.148739, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 148.73909950256348, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17244.670152664185, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,149", - "created": 1614535187.149282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 149.28197860717773, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17245.2130317688, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,149", - "created": 1614535187.149409, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 149.40905570983887, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17245.34010887146, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,149", - "created": 1614535187.149512, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 149.51205253601074, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17245.443105697632, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,149", - "created": 1614535187.149687, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): False ()", - "module": "test", - "msecs": 149.6870517730713, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17245.618104934692, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,149", - "created": 1614535187.149762, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = False ()", - "module": "test", - "msecs": 149.76191520690918, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17245.69296836853, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 149.82891082763672, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17245.759963989258, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 6.699562072753906e-05 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.150081, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,149", - "created": 1614535187.149951, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): False ()", - "module": "test", - "msecs": 149.95098114013672, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17245.882034301758, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.150018, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = False ()", - "module": "test", - "msecs": 150.01797676086426, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17245.949029922485, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 150.08091926574707, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17246.011972427368, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 6.29425048828125e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:47,493", - "created": 1614535187.493832, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Connecting Server and Client", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.150185, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 150.18510818481445, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17246.116161346436, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.150258, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 150.25806427001953, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17246.18911743164, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.150349, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 150.34890174865723, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17246.27995491028, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.150486, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 150.48599243164062, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17246.41704559326, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.15076, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 150.75993537902832, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17246.69098854065, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.150856, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 150.85601806640625, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17246.787071228027, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,150", - "created": 1614535187.150959, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 150.95901489257812, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17246.8900680542, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,171", - "created": 1614535187.171703, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 171.70310020446777, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17267.63415336609, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172004, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 172.00398445129395, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17267.935037612915, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172119, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 172.1189022064209, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.049955368042, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172223, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 172.22309112548828, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.15414428711, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172347, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 172.3470687866211, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.278121948242, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172443, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 172.44291305541992, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.37396621704, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172592, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 172.5919246673584, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.52297782898, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172668, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 172.6679801940918, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.599033355713, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172756, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 172.75595664978027, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.6870098114, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172825, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 172.82509803771973, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.75615119934, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,172", - "created": 1614535187.172928, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 172.9280948638916, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.859148025513, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 173.00009727478027, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17268.9311504364, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173111, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 173.1109619140625, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17269.042015075684, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173196, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 173.19607734680176, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17269.127130508423, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173275, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 173.27499389648438, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17269.206047058105, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173348, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 173.34794998168945, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17269.27900314331, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173493, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 173.4929084777832, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17269.423961639404, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173727, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 173.72703552246094, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17269.658088684082, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173844, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 173.8440990447998, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17269.77515220642, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,173", - "created": 1614535187.173993, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 173.99311065673828, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17269.92416381836, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181157, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 181.15711212158203, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.088165283203, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181318, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 181.3180446624756, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.249097824097, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181392, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 181.39195442199707, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.323007583618, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181464, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 181.46395683288574, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.395009994507, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181541, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 181.54096603393555, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.472019195557, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181603, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 181.60295486450195, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.534008026123, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181709, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 181.70905113220215, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.640104293823, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181779, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 181.7789077758789, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.7099609375, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181871, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 181.8709373474121, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.801990509033, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,181", - "created": 1614535187.181959, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 181.9589138031006, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.88996696472, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.182038, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 182.0380687713623, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17277.969121932983, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.182093, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 182.09290504455566, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17278.023958206177, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.182177, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 182.17706680297852, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17278.1081199646, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.18226, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 182.26003646850586, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17278.191089630127, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.182323, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 182.32297897338867, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17278.25403213501, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.182377, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 182.37709999084473, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17278.308153152466, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.182486, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 182.48605728149414, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17278.417110443115, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.182618, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 182.6179027557373, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17278.54895591736, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:47,182", - "created": 1614535187.182692, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 182.6920509338379, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17278.62310409546, - "thread": 139997176903424, - "threadName": "Thread-30" - } - ], - "msecs": 493.8321113586426, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17589.763164520264, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3111400604248047 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,495", - "created": 1614535187.495485, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,494", - "created": 1614535187.494909, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): True ()", - "module": "test", - "msecs": 494.90904808044434, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17590.840101242065, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,495", - "created": 1614535187.495205, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = True ()", - "module": "test", - "msecs": 495.2049255371094, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17591.13597869873, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 495.4850673675537, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17591.416120529175, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00028014183044433594 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,496", - "created": 1614535187.496579, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,495", - "created": 1614535187.495904, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): True ()", - "module": "test", - "msecs": 495.90396881103516, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17591.835021972656, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,496", - "created": 1614535187.49614, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = True ()", - "module": "test", - "msecs": 496.1400032043457, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17592.071056365967, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 496.5789318084717, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17592.509984970093, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00043892860412597656 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:47,496", - "created": 1614535187.496927, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Adding secrets to socket_protocol", - "module": "test_add_methods", - "moduleLogger": [], - "msecs": 496.92702293395996, - "msg": "Adding secrets to socket_protocol", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17592.85807609558, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,497", - "created": 1614535187.497535, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,497", - "created": 1614535187.497212, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): False ()", - "module": "test", - "msecs": 497.2119331359863, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17593.142986297607, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,497", - "created": 1614535187.497377, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = False ()", - "module": "test", - "msecs": 497.3769187927246, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17593.307971954346, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 497.53499031066895, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17593.46604347229, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00015807151794433594 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,498", - "created": 1614535187.498221, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,497", - "created": 1614535187.497827, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): False ()", - "module": "test", - "msecs": 497.82705307006836, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17593.75810623169, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,497", - "created": 1614535187.498, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = False ()", - "module": "test", - "msecs": 497.999906539917, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17593.930959701538, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 498.22092056274414, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17594.151973724365, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00022101402282714844 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:47,599", - "created": 1614535187.599683, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 31, - "message": "Doing authentification", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,498", - "created": 1614535187.498698, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 498.69799613952637, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17594.629049301147, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,507", - "created": 1614535187.507357, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 507.3568820953369, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17603.287935256958, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,507", - "created": 1614535187.507949, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 507.9491138458252, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17603.880167007446, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,508", - "created": 1614535187.508249, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 508.24904441833496, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17604.180097579956, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,508", - "created": 1614535187.508501, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 508.5010528564453, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17604.432106018066, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,508", - "created": 1614535187.50885, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 508.85009765625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17604.78115081787, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,509", - "created": 1614535187.509281, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 509.2809200286865, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17605.211973190308, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,509", - "created": 1614535187.509536, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 509.5360279083252, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17605.467081069946, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,509", - "created": 1614535187.509751, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 509.7510814666748, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17605.682134628296, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,509", - "created": 1614535187.509962, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 509.9620819091797, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17605.8931350708, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,510", - "created": 1614535187.510142, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 510.14208793640137, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17606.073141098022, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,510", - "created": 1614535187.510403, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 510.4029178619385, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17606.33397102356, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,510", - "created": 1614535187.510595, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 510.59508323669434, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17606.526136398315, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,510", - "created": 1614535187.51089, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 510.89000701904297, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17606.821060180664, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,511", - "created": 1614535187.511134, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 511.13390922546387, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17607.064962387085, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,511", - "created": 1614535187.511355, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 511.354923248291, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17607.285976409912, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,511", - "created": 1614535187.511547, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 511.5470886230469, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17607.478141784668, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - "(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 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 30 7d 10 4d cd 55" - ], - "asctime": "2021-02-28 18:59:47,511", - "created": 1614535187.51198, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 30 7d 10 4d cd 55", - "module": "stp", - "msecs": 511.9800567626953, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17607.911109924316, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,512", - "created": 1614535187.512439, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 512.4390125274658, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17608.370065689087, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 18:59:47,512", - "created": 1614535187.512779, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 512.7789974212646, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17608.710050582886, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'6674a864f26fb14dc42f9a9df47cc5ce66d879fcb2160c5e026d6e50c9a6b60e'" - ], - "asctime": "2021-02-28 18:59:47,513", - "created": 1614535187.513169, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'6674a864f26fb14dc42f9a9df47cc5ce66d879fcb2160c5e026d6e50c9a6b60e'\"", - "module": "__init__", - "msecs": 513.1690502166748, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17609.100103378296, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 37 34 61 38 36 34 66 32 36 66 62 31 34 64 63 34 32" - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516062, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 37 34 61 38 36 34 66 32 36 66 62 31 34 64 63 34 32", - "module": "__init__", - "msecs": 516.0620212554932, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17611.993074417114, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 37 34 61 38 36 34 66 32 36 66 62 31 34 64 63 34 32" - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516242, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 37 34 61 38 36 34 66 32 36 66 62 31 34 64 63 34 32", - "module": "__init__", - "msecs": 516.2420272827148, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.173080444336, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516325, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 516.3249969482422, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.256050109863, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516404, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 516.4039134979248, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.334966659546, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516487, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 516.4868831634521, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.417936325073, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516549, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 516.5491104125977, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.48016357422, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516636, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 516.6358947753906, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.56694793701, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516701, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 516.7009830474854, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.632036209106, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.5168, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 516.7999267578125, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.730979919434, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,516", - "created": 1614535187.516859, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 516.8590545654297, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17612.79010772705, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(64): 66 39 61 39 64 66 34 37 63 63 35 63 65 36 36 64 38 37 39 66 63 62 32 31 36 30 63 35 65 30 32 36 64 36 65 35 30 63 39 61 36 62 36 30 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 64 96" - ], - "asctime": "2021-02-28 18:59:47,517", - "created": 1614535187.517075, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 66 39 61 39 64 66 34 37 63 63 35 63 65 36 36 64 38 37 39 66 63 62 32 31 36 30 63 35 65 30 32 36 64 36 65 35 30 63 39 61 36 62 36 30 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 64 96", - "module": "__init__", - "msecs": 517.0750617980957, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17613.006114959717, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 66 39 61 39 64 66 34 37 63 63 35 63 65 36 36 64 38 37 39 66 63 62 32 31 36 30 63 35 65 30 32 36 64 36 65 35 30 63 39 61 36 62 36 30 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 64 96" - ], - "asctime": "2021-02-28 18:59:47,517", - "created": 1614535187.51725, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 66 39 61 39 64 66 34 37 63 63 35 63 65 36 36 64 38 37 39 66 63 62 32 31 36 30 63 35 65 30 32 36 64 36 65 35 30 63 39 61 36 62 36 30 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 64 96", - "module": "__init__", - "msecs": 517.2500610351562, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17613.181114196777, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,517", - "created": 1614535187.51747, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 517.4698829650879, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17613.40093612671, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,517", - "created": 1614535187.517563, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 517.5631046295166, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17613.494157791138, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(4): 3b 4e 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,517", - "created": 1614535187.5177, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (4): 3b 4e 3a 3e", - "module": "__init__", - "msecs": 517.6999568939209, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17613.631010055542, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(4): 3b 4e 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,517", - "created": 1614535187.517828, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (4): 3b 4e 3a 3e", - "module": "__init__", - "msecs": 517.8279876708984, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17613.75904083252, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,517", - "created": 1614535187.517939, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 517.9390907287598, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17613.87014389038, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,518", - "created": 1614535187.518023, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 518.0230140686035, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17613.954067230225, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 64 61 74 61 22 3a 20 22 36 36 37 34 61 38 36 34 66 32 36 66 62 31 34 64 63 34 32 66 39 61 39 64 66 34 37 63 63 35 63 65 36 36 64 38 37 39 66 63 62 32 31 36 30 63 35 65 30 32 36 64 36 65 35 30 63 39 61 36 62 36 30 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 64 96 3b 4e" - ], - "asctime": "2021-02-28 18:59:47,518", - "created": 1614535187.518283, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 64 61 74 61 22 3a 20 22 36 36 37 34 61 38 36 34 66 32 36 66 62 31 34 64 63 34 32 66 39 61 39 64 66 34 37 63 63 35 63 65 36 36 64 38 37 39 66 63 62 32 31 36 30 63 35 65 30 32 36 64 36 65 35 30 63 39 61 36 62 36 30 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 64 96 3b 4e", - "module": "stp", - "msecs": 518.2828903198242, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17614.213943481445, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: seed", - "status: okay", - "u'6674a864f26fb14dc42f9a9df47cc5ce66d879fcb2160c5e026d6e50c9a6b60e'" - ], - "asctime": "2021-02-28 18:59:47,518", - "created": 1614535187.518444, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'6674a864f26fb14dc42f9a9df47cc5ce66d879fcb2160c5e026d6e50c9a6b60e'\"", - "module": "__init__", - "msecs": 518.4440612792969, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17614.375114440918, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "__authentificate_create_key__" - ], - "asctime": "2021-02-28 18:59:47,518", - "created": 1614535187.518538, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", - "module": "__init__", - "msecs": 518.5379981994629, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17614.469051361084, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: key", - "status: okay", - "'d10b0166f4d91f372e15a9a7248046cad8729e3dae151567e0c84b012f114eb7e8b2bdf2e4091c5267d83fd483dc4ddba46cb5c1eb94b199912cfd37988e8131'" - ], - "asctime": "2021-02-28 18:59:47,518", - "created": 1614535187.518671, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'d10b0166f4d91f372e15a9a7248046cad8729e3dae151567e0c84b012f114eb7e8b2bdf2e4091c5267d83fd483dc4ddba46cb5c1eb94b199912cfd37988e8131'\"", - "module": "__init__", - "msecs": 518.6710357666016, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17614.602088928223, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 31 30 62 30 31 36 36 66 34 64 39 31 66 33 37 32 65 31" - ], - "asctime": "2021-02-28 18:59:47,520", - "created": 1614535187.520915, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 31 30 62 30 31 36 36 66 34 64 39 31 66 33 37 32 65 31", - "module": "__init__", - "msecs": 520.9150314331055, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17616.846084594727, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 31 30 62 30 31 36 36 66 34 64 39 31 66 33 37 32 65 31" - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.521084, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 64 31 30 62 30 31 36 36 66 34 64 39 31 66 33 37 32 65 31", - "module": "__init__", - "msecs": 521.0840702056885, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.01512336731, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.52116, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 521.1598873138428, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.090940475464, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.521226, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 521.2259292602539, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.156982421875, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.521304, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 521.3038921356201, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.23494529724, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.521373, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 521.3730335235596, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.30408668518, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.521457, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 521.4569568634033, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.388010025024, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.521519, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 521.5189456939697, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.44999885559, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.521591, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 521.5909481048584, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.52200126648, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.521647, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 521.6469764709473, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.57802963257, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(64): 35 61 39 61 37 32 34 38 30 34 36 63 61 64 38 37 32 39 65 33 64 61 65 31 35 31 35 36 37 65 30 63 38 34 62 30 31 32 66 31 31 34 65 62 37 65 38 62 32 62 64 66 32 65 34 30 39 31 63 35 32 36 37 64" - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.52184, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 35 61 39 61 37 32 34 38 30 34 36 63 61 64 38 37 32 39 65 33 64 61 65 31 35 31 35 36 37 65 30 63 38 34 62 30 31 32 66 31 31 34 65 62 37 65 38 62 32 62 64 66 32 65 34 30 39 31 63 35 32 36 37 64", - "module": "__init__", - "msecs": 521.8400955200195, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.77114868164, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 35 61 39 61 37 32 34 38 30 34 36 63 61 64 38 37 32 39 65 33 64 61 65 31 35 31 35 36 37 65 30 63 38 34 62 30 31 32 66 31 31 34 65 62 37 65 38 62 32 62 64 66 32 65 34 30 39 31 63 35 32 36 37 64" - ], - "asctime": "2021-02-28 18:59:47,521", - "created": 1614535187.52197, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 35 61 39 61 37 32 34 38 30 34 36 63 61 64 38 37 32 39 65 33 64 61 65 31 35 31 35 36 37 65 30 63 38 34 62 30 31 32 66 31 31 34 65 62 37 65 38 62 32 62 64 66 32 65 34 30 39 31 63 35 32 36 37 64", - "module": "__init__", - "msecs": 521.9700336456299, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17617.90108680725, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(64): 38 33 66 64 34 38 33 64 63 34 64 64 62 61 34 36 63 62 35 63 31 65 62 39 34 62 31 39 39 39 31 32 63 66 64 33 37 39 38 38 65 38 31 33 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d bb a8" - ], - "asctime": "2021-02-28 18:59:47,522", - "created": 1614535187.522201, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 38 33 66 64 34 38 33 64 63 34 64 64 62 61 34 36 63 62 35 63 31 65 62 39 34 62 31 39 39 39 31 32 63 66 64 33 37 39 38 38 65 38 31 33 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d bb a8", - "module": "__init__", - "msecs": 522.2010612487793, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17618.1321144104, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 38 33 66 64 34 38 33 64 63 34 64 64 62 61 34 36 63 62 35 63 31 65 62 39 34 62 31 39 39 39 31 32 63 66 64 33 37 39 38 38 65 38 31 33 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d bb a8" - ], - "asctime": "2021-02-28 18:59:47,522", - "created": 1614535187.522348, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 38 33 66 64 34 38 33 64 63 34 64 64 62 61 34 36 63 62 35 63 31 65 62 39 34 62 31 39 39 39 31 32 63 66 64 33 37 39 38 38 65 38 31 33 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d bb a8", - "module": "__init__", - "msecs": 522.3479270935059, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17618.278980255127, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,522", - "created": 1614535187.522508, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 522.507905960083, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17618.438959121704, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,522", - "created": 1614535187.522593, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 522.5930213928223, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17618.524074554443, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(4): 5e e7 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,522", - "created": 1614535187.522679, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (4): 5e e7 3a 3e", - "module": "__init__", - "msecs": 522.6790904998779, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17618.6101436615, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(4): 5e e7 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,522", - "created": 1614535187.522741, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (4): 5e e7 3a 3e", - "module": "__init__", - "msecs": 522.7410793304443, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17618.672132492065, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,522", - "created": 1614535187.522799, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 522.799015045166, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17618.730068206787, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,522", - "created": 1614535187.522857, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 522.8569507598877, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17618.78800392151, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - "(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 30 2c 20 22 64 61 74 61 22 3a 20 22 64 31 30 62 30 31 36 36 66 34 64 39 31 66 33 37 32 65 31 35 61 39 61 37 32 34 38 30 34 36 63 61 64 38 37 32 39 65 33 64 61 65 31 35 31 35 36 37 65 30 63 38 34 62 30 31 32 66 31 31 34 65 62 37 65 38 62 32 62 64 66 32 65 34 30 39 31 63 35 32 36 37 64 38 33 66 64 34 38 33 64 63 34 64 64 62 61 34 36 63 62 35 63 31 65 62 39 34 62 31 39 39 39 31 32 63 66 64 33 37 39 38 38 65 38 31 33 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d bb a8 5e e7" - ], - "asctime": "2021-02-28 18:59:47,523", - "created": 1614535187.523083, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 30 2c 20 22 64 61 74 61 22 3a 20 22 64 31 30 62 30 31 36 36 66 34 64 39 31 66 33 37 32 65 31 35 61 39 61 37 32 34 38 30 34 36 63 61 64 38 37 32 39 65 33 64 61 65 31 35 31 35 36 37 65 30 63 38 34 62 30 31 32 66 31 31 34 65 62 37 65 38 62 32 62 64 66 32 65 34 30 39 31 63 35 32 36 37 64 38 33 66 64 34 38 33 64 63 34 64 64 62 61 34 36 63 62 35 63 31 65 62 39 34 62 31 39 39 39 31 32 63 66 64 33 37 39 38 38 65 38 31 33 31 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d bb a8 5e e7", - "module": "stp", - "msecs": 523.082971572876, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17619.014024734497, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: key", - "status: okay", - "u'd10b0166f4d91f372e15a9a7248046cad8729e3dae151567e0c84b012f114eb7e8b2bdf2e4091c5267d83fd483dc4ddba46cb5c1eb94b199912cfd37988e8131'" - ], - "asctime": "2021-02-28 18:59:47,523", - "created": 1614535187.523219, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'd10b0166f4d91f372e15a9a7248046cad8729e3dae151567e0c84b012f114eb7e8b2bdf2e4091c5267d83fd483dc4ddba46cb5c1eb94b199912cfd37988e8131'\"", - "module": "__init__", - "msecs": 523.219108581543, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17619.150161743164, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "__authentificate_check_key__" - ], - "asctime": "2021-02-28 18:59:47,523", - "created": 1614535187.523298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", - "module": "__init__", - "msecs": 523.2980251312256, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17619.229078292847, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:47,523", - "created": 1614535187.523413, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 523.4129428863525, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17619.343996047974, - "thread": 139997185296128, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" - ], - "asctime": "2021-02-28 18:59:47,526", - "created": 1614535187.526712, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", - "module": "__init__", - "msecs": 526.7119407653809, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17622.642993927002, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" - ], - "asctime": "2021-02-28 18:59:47,526", - "created": 1614535187.526912, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", - "module": "__init__", - "msecs": 526.9119739532471, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17622.843027114868, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527005, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 527.0049571990967, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17622.936010360718, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527087, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 527.0869731903076, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.01802635193, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527206, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 527.2059440612793, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.1369972229, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527277, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 527.2769927978516, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.208045959473, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527388, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 527.3880958557129, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.319149017334, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527458, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 527.4579524993896, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.38900566101, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527555, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 527.554988861084, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.486042022705, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527624, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 527.6238918304443, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.554944992065, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527724, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 527.724027633667, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.655080795288, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527793, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 527.7929306030273, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.72398376465, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(6): 11 d3 26 78 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527898, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", - "module": "__init__", - "msecs": 527.8980731964111, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.829126358032, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(6): 11 d3 26 78 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,527", - "created": 1614535187.527984, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", - "module": "__init__", - "msecs": 527.9839038848877, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17623.91495704651, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,528", - "created": 1614535187.528085, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 528.0849933624268, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17624.016046524048, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,528", - "created": 1614535187.52814, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 528.1400680541992, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17624.07112121582, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - "(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 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" - ], - "asctime": "2021-02-28 18:59:47,528", - "created": 1614535187.528253, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "stp", - "msecs": 528.2530784606934, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17624.184131622314, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:47,528", - "created": 1614535187.528389, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 528.3889770507812, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17624.320030212402, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-02-28 18:59:47,528", - "created": 1614535187.528471, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 528.4709930419922, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17624.402046203613, - "thread": 139997176903424, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,528", - "created": 1614535187.528538, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentificate_process_feedback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 372, - "message": "prot-client: Got positive authentification feedback", - "module": "__init__", - "msecs": 528.5379886627197, - "msg": "%s Got positive authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17624.46904182434, - "thread": 139997176903424, - "threadName": "Thread-30" - } - ], - "msecs": 599.6830463409424, - "msg": "Doing authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17695.614099502563, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.07114505767822266 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,601", - "created": 1614535187.601733, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,600", - "created": 1614535187.600872, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): True ()", - "module": "test", - "msecs": 600.8720397949219, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17696.803092956543, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,601", - "created": 1614535187.601199, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = True ()", - "module": "test", - "msecs": 601.1989116668701, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17697.12996482849, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 601.7329692840576, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17697.66402244568, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0005340576171875 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,603", - "created": 1614535187.603055, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,602", - "created": 1614535187.602264, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): True ()", - "module": "test", - "msecs": 602.2639274597168, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17698.194980621338, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,602", - "created": 1614535187.602655, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = True ()", - "module": "test", - "msecs": 602.6549339294434, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17698.585987091064, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 603.0550003051758, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17698.986053466797, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0004000663757324219 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.8110020160675049, - "time_finished": "2021-02-28 18:59:47,603", - "time_start": "2021-02-28 18:59:46,792" - }, - "_elO7wE4gEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 18:59:47,603", - "created": 1614535187.603951, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 54, - "message": "_elO7wE4gEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 603.9509773254395, - "msg": "_elO7wE4gEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17699.88203048706, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608564, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,604", - "created": 1614535187.604578, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 604.5780181884766, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17700.509071350098, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,604", - "created": 1614535187.60498, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 604.9799919128418, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17700.911045074463, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605074, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 605.0739288330078, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.00498199463, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605258, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 605.2579879760742, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.189041137695, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605342, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 605.341911315918, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.27296447754, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.60544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 605.4399013519287, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.37095451355, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605514, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 605.5140495300293, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.44510269165, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605579, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 605.5788993835449, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.509952545166, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605641, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 605.6408882141113, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.571941375732, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605737, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 605.7369709014893, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.66802406311, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605828, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 605.828046798706, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.759099960327, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605909, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 605.9091091156006, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.84016227722, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:47,605", - "created": 1614535187.605992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 605.9920787811279, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17701.92313194275, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606087, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 606.0869693756104, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.01802253723, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 606.1780452728271, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.10909843445, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606268, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 606.2679290771484, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.19898223877, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606343, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 606.3430309295654, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.274084091187, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606422, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 606.421947479248, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.35300064087, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606507, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 606.5070629119873, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.43811607361, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606588, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 606.5878868103027, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.518939971924, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606662, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 606.6620349884033, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.593088150024, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606735, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 606.7349910736084, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.66604423523, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,606", - "created": 1614535187.606808, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 606.8079471588135, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.739000320435, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607019, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 607.0189476013184, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17702.95000076294, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607106, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 607.1059703826904, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.03702354431, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607225, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 607.2249412536621, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.155994415283, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607302, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 607.3019504547119, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.233003616333, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607371, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 607.3710918426514, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.302145004272, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607443, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 607.44309425354, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.37414741516, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607517, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 607.5170040130615, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.448057174683, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607595, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 607.5949668884277, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.52602005005, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607671, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 607.6710224151611, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.602075576782, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607747, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 607.7470779418945, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.678131103516, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607815, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 607.8150272369385, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.74608039856, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 607.896089553833, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.827142715454, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:47,607", - "created": 1614535187.607977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 607.9769134521484, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.90796661377, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608051, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 608.051061630249, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17703.98211479187, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608124, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 608.1240177154541, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.055070877075, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608203, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 608.2029342651367, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.133987426758, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608277, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 608.2770824432373, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.20813560486, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608353, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 608.3528995513916, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.283952713013, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608423, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 608.4229946136475, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.35404777527, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608492, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 608.4918975830078, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.42295074463, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 608.5638999938965, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.494953155518, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 7.200241088867188e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:47,952", - "created": 1614535187.952649, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608714, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 608.7141036987305, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.64515686035, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608834, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 608.8340282440186, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.76508140564, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,608", - "created": 1614535187.608906, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 608.9060306549072, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.83708381653, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,609", - "created": 1614535187.609028, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 609.0281009674072, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17704.95915412903, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,609", - "created": 1614535187.609263, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 609.2629432678223, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17705.193996429443, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,609", - "created": 1614535187.60935, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 609.3499660491943, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17705.281019210815, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,609", - "created": 1614535187.609427, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 609.4269752502441, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17705.358028411865, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,612", - "created": 1614535187.612979, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 612.9789352416992, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17708.90998840332, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613147, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 613.1470203399658, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.078073501587, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613227, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 613.2268905639648, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.157943725586, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613293, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 613.292932510376, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.223985671997, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613368, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 613.368034362793, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.299087524414, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613436, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 613.4359836578369, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.367036819458, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.61352, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 613.5199069976807, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.4509601593, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613582, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 613.5818958282471, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.512948989868, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613674, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 613.6739253997803, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.6049785614, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613741, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 613.7409210205078, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.67197418213, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613837, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 613.8370037078857, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.768056869507, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,613", - "created": 1614535187.613902, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 613.9020919799805, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.8331451416, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,614", - "created": 1614535187.614003, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 614.0029430389404, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17709.93399620056, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,614", - "created": 1614535187.614082, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 614.0820980072021, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17710.013151168823, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,614", - "created": 1614535187.614157, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 614.15696144104, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17710.08801460266, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,614", - "created": 1614535187.614226, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 614.2261028289795, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17710.1571559906, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:47,614", - "created": 1614535187.61436, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 614.3600940704346, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17710.291147232056, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,614", - "created": 1614535187.614518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 614.5179271697998, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17710.44898033142, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:47,614", - "created": 1614535187.614605, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 614.6049499511719, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17710.536003112793, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,614", - "created": 1614535187.614718, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 614.717960357666, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17710.649013519287, - "thread": 139997168510720, - "threadName": "Thread-31" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615041, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 615.0410175323486, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17710.97207069397, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615205, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 615.2050495147705, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.13610267639, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615281, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 615.2811050415039, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.212158203125, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615345, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 615.3450012207031, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.276054382324, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.61542, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 615.4201030731201, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.35115623474, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615477, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 615.4770851135254, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.408138275146, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615554, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 615.5540943145752, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.485147476196, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615608, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 615.6079769134521, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.539030075073, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.61568, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 615.6799793243408, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.611032485962, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615737, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 615.7369613647461, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.668014526367, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615814, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 615.8139705657959, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.745023727417, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.61587, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 615.8699989318848, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.801052093506, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,615", - "created": 1614535187.615952, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 615.9520149230957, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.883068084717, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,616", - "created": 1614535187.616025, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 616.0249710083008, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17711.956024169922, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,616", - "created": 1614535187.616099, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 616.0991191864014, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17712.030172348022, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,616", - "created": 1614535187.616163, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 616.1630153656006, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17712.09406852722, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:47,616", - "created": 1614535187.616695, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 616.6949272155762, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17712.625980377197, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,616", - "created": 1614535187.616869, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 616.8689727783203, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17712.80002593994, - "thread": 139997160118016, - "threadName": "Thread-32" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:47,616", - "created": 1614535187.616968, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 616.9679164886475, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 17712.89896965027, - "thread": 139997160118016, - "threadName": "Thread-32" - } - ], - "msecs": 952.6491165161133, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18048.580169677734, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3356812000274658 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,954", - "created": 1614535187.954114, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,953", - "created": 1614535187.953251, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): True ()", - "module": "test", - "msecs": 953.2508850097656, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18049.181938171387, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,953", - "created": 1614535187.953576, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = True ()", - "module": "test", - "msecs": 953.5760879516602, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18049.50714111328, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 954.1139602661133, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18050.045013427734, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.000537872314453125 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,955", - "created": 1614535187.955363, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,954", - "created": 1614535187.954663, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): True ()", - "module": "test", - "msecs": 954.6630382537842, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18050.594091415405, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:47,955", - "created": 1614535187.955109, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = True ()", - "module": "test", - "msecs": 955.1088809967041, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18051.039934158325, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 955.3630352020264, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18051.294088363647, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002541542053222656 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:47,956", - "created": 1614535187.95695, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "is_connected", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 43, - "message": "Disconnecting Server and Client", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,955", - "created": 1614535187.95578, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 955.780029296875, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18051.711082458496, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,956", - "created": 1614535187.956161, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 956.1610221862793, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18052.0920753479, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,956", - "created": 1614535187.956387, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 956.3870429992676, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18052.31809616089, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,956", - "created": 1614535187.956661, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 956.6609859466553, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18052.592039108276, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 956.9499492645264, - "msg": "Disconnecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18052.881002426147, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00028896331787109375 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,957", - "created": 1614535187.957856, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,957", - "created": 1614535187.95736, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): False ()", - "module": "test", - "msecs": 957.360029220581, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18053.291082382202, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,957", - "created": 1614535187.957601, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = False ()", - "module": "test", - "msecs": 957.6010704040527, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18053.532123565674, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 957.8559398651123, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18053.786993026733, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002548694610595703 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,958", - "created": 1614535187.958523, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,958", - "created": 1614535187.958348, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): False ()", - "module": "test", - "msecs": 958.3480358123779, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18054.279088974, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:47,958", - "created": 1614535187.958437, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = False ()", - "module": "test", - "msecs": 958.4369659423828, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18054.368019104004, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 958.5230350494385, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18054.45408821106, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 8.606910705566406e-05 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.354572057723999, - "time_finished": "2021-02-28 18:59:47,958", - "time_start": "2021-02-28 18:59:47,603" - }, - "_gvJ1oE4gEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 18:59:47,958", - "created": 1614535187.958929, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 55, - "message": "_gvJ1oE4gEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 958.9290618896484, - "msg": "_gvJ1oE4gEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18054.86011505127, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.96357, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,959", - "created": 1614535187.959327, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 959.326982498169, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18055.25803565979, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,959", - "created": 1614535187.959753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 959.7530364990234, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18055.684089660645, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,959", - "created": 1614535187.959868, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 959.8679542541504, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18055.79900741577, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.960179, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 960.1790904998779, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.1101436615, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.96027, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 960.2699279785156, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.200981140137, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.960377, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 960.3769779205322, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.308031082153, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.96045, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 960.4499340057373, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.38098716736, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.960518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 960.5178833007812, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.448936462402, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.960585, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 960.5851173400879, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.51617050171, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.960659, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 960.6590270996094, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.59008026123, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.96074, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 960.7400894165039, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.671142578125, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.960814, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 960.8139991760254, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.745052337646, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.960885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 960.8850479125977, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.81610107422, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,960", - "created": 1614535187.960948, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 960.9479904174805, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.8790435791, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.96103, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 961.0300064086914, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18056.961059570312, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.961104, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 961.1039161682129, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.034969329834, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.961178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 961.1780643463135, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.109117507935, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.961267, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 961.2669944763184, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.19804763794, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.961356, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 961.3559246063232, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.286977767944, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.96144, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 961.4400863647461, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.371139526367, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.961518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 961.5180492401123, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.449102401733, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.961594, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 961.5941047668457, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.525157928467, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.961695, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 961.6949558258057, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.626008987427, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,961", - "created": 1614535187.9619, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 961.899995803833, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.831048965454, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962033, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 962.0330333709717, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18057.964086532593, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962139, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 962.1388912200928, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.069944381714, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 962.2130393981934, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.144092559814, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962291, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 962.2910022735596, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.22205543518, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962373, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 962.3730182647705, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.30407142639, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962456, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 962.4559879302979, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.38704109192, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962546, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 962.5461101531982, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.47716331482, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962635, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 962.6350402832031, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.566093444824, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962721, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 962.7211093902588, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.65216255188, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962797, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 962.7969264984131, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.727979660034, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962884, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 962.8839492797852, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.815002441406, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:47,962", - "created": 1614535187.962974, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 962.9740715026855, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.905124664307, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.963054, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 963.0539417266846, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18058.984994888306, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.96314, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 963.1400108337402, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.07106399536, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.963237, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 963.2370471954346, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.168100357056, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.963305, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 963.3049964904785, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.2360496521, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.963369, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 963.3688926696777, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.2999458313, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.96344, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 963.43994140625, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.37099456787, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.963504, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 963.5040760040283, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.43512916565, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 963.5701179504395, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.50117111206, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 6.604194641113281e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:48,307", - "created": 1614535188.30772, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.963726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 963.7260437011719, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.657096862793, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.963823, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 963.8230800628662, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.754133224487, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:47,963", - "created": 1614535187.963918, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 963.9179706573486, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.84902381897, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,964", - "created": 1614535187.964035, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 964.0350341796875, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18059.96608734131, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,964", - "created": 1614535187.964282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 964.2820358276367, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18060.213088989258, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:47,964", - "created": 1614535187.964388, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 964.3878936767578, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18060.31894683838, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:47,964", - "created": 1614535187.964485, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 964.4849300384521, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18060.415983200073, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968061, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 968.0609703063965, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18063.992023468018, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968256, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 968.2559967041016, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.187049865723, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968344, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 968.34397315979, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.27502632141, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968418, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 968.4178829193115, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.348936080933, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.96851, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 968.5099124908447, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.440965652466, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968577, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 968.5769081115723, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.507961273193, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968666, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 968.6660766601562, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.597129821777, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968737, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 968.7368869781494, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.66794013977, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968819, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 968.8189029693604, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.74995613098, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968881, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 968.8808917999268, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.811944961548, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,968", - "created": 1614535187.968975, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 968.9750671386719, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.906120300293, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969042, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 969.0420627593994, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18064.97311592102, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969137, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 969.1369533538818, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18065.068006515503, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969224, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 969.2239761352539, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18065.155029296875, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969291, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 969.2909717559814, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18065.222024917603, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969349, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 969.3489074707031, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18065.279960632324, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969485, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 969.4850444793701, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18065.41609764099, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969664, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 969.6640968322754, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18065.595149993896, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969751, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 969.7508811950684, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18065.68193435669, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,969", - "created": 1614535187.969855, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 969.8550701141357, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18065.786123275757, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,976", - "created": 1614535187.976218, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 976.2179851531982, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18072.14903831482, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:47,976", - "created": 1614535187.976487, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 976.4869213104248, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18072.417974472046, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,976", - "created": 1614535187.976596, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 976.5961170196533, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18072.527170181274, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:47,976", - "created": 1614535187.976676, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 976.6759872436523, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18072.607040405273, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,976", - "created": 1614535187.976775, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 976.7749309539795, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18072.7059841156, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,976", - "created": 1614535187.976846, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 976.8459796905518, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18072.777032852173, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,976", - "created": 1614535187.97694, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 976.9399166107178, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18072.87096977234, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977007, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 977.0069122314453, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18072.937965393066, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977092, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 977.0920276641846, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.023080825806, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977157, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 977.1571159362793, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.0881690979, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977248, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 977.247953414917, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.179006576538, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977312, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 977.3120880126953, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.243141174316, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977445, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 977.4448871612549, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.375940322876, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 977.5440692901611, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.475122451782, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977638, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 977.6380062103271, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.56905937195, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977738, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 977.7379035949707, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.66895675659, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:47,977", - "created": 1614535187.977901, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 977.9009819030762, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18073.832035064697, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:47,978", - "created": 1614535187.97814, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 978.140115737915, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18074.071168899536, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:47,978", - "created": 1614535187.978252, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 978.2519340515137, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18074.182987213135, - "thread": 139996665210624, - "threadName": "Thread-34" - } - ], - "msecs": 307.7199459075928, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18403.650999069214, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3294680118560791 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,308", - "created": 1614535188.308747, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,308", - "created": 1614535188.308341, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): True ()", - "module": "test", - "msecs": 308.34102630615234, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18404.272079467773, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,308", - "created": 1614535188.308562, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = True ()", - "module": "test", - "msecs": 308.5620403289795, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18404.4930934906, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 308.7470531463623, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18404.678106307983, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0001850128173828125 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,309", - "created": 1614535188.309376, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,309", - "created": 1614535188.309035, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): True ()", - "module": "test", - "msecs": 309.035062789917, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18404.966115951538, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,309", - "created": 1614535188.309204, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = True ()", - "module": "test", - "msecs": 309.2041015625, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18405.13515472412, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 309.3760013580322, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18405.307054519653, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00017189979553222656 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:48,310", - "created": 1614535188.310604, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "reconnect", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 55, - "message": "Disconnecting Server and Client", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:48,309", - "created": 1614535188.309636, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 309.63611602783203, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18405.567169189453, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:48,309", - "created": 1614535188.309892, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 309.891939163208, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18405.82299232483, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:48,310", - "created": 1614535188.310081, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 310.08100509643555, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18406.012058258057, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:48,310", - "created": 1614535188.310367, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 310.3671073913574, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18406.29816055298, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 310.6040954589844, - "msg": "Disconnecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18406.535148620605, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00023698806762695312 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:48,311", - "created": 1614535188.311624, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:48,311", - "created": 1614535188.311155, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): False ()", - "module": "test", - "msecs": 311.1550807952881, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18407.08613395691, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:48,311", - "created": 1614535188.311394, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = False ()", - "module": "test", - "msecs": 311.39397621154785, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18407.32502937317, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 311.62405014038086, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18407.555103302002, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002300739288330078 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:48,312", - "created": 1614535188.312414, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:48,311", - "created": 1614535188.311989, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): False ()", - "module": "test", - "msecs": 311.98906898498535, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18407.920122146606, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 18:59:48,312", - "created": 1614535188.312205, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = False ()", - "module": "test", - "msecs": 312.20507621765137, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18408.136129379272, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 312.41393089294434, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18408.344984054565, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00020885467529296875 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:48,658", - "created": 1614535188.658566, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "reconnect", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 61, - "message": "Connecting Server and Client", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:48,312", - "created": 1614535188.312894, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 312.8941059112549, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18408.825159072876, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:48,313", - "created": 1614535188.313146, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 313.14611434936523, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18409.077167510986, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:48,313", - "created": 1614535188.313386, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 313.3859634399414, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18409.317016601562, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:48,313", - "created": 1614535188.313799, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 313.7989044189453, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18409.729957580566, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:48,314", - "created": 1614535188.314625, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 314.6250247955322, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18410.556077957153, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:48,314", - "created": 1614535188.314912, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 314.9120807647705, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18410.84313392639, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:48,315", - "created": 1614535188.315191, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 315.19103050231934, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18411.12208366394, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:48,335", - "created": 1614535188.335249, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 335.2489471435547, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18431.180000305176, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:48,335", - "created": 1614535188.335842, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 335.8418941497803, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18431.7729473114, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,336", - "created": 1614535188.336715, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 336.7149829864502, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18432.64603614807, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:48,337", - "created": 1614535188.33709, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 337.09001541137695, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18433.021068572998, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,337", - "created": 1614535188.337729, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 337.72897720336914, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18433.66003036499, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:48,338", - "created": 1614535188.338068, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 338.06800842285156, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18433.999061584473, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,338", - "created": 1614535188.338401, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 338.40107917785645, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18434.332132339478, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:48,338", - "created": 1614535188.338625, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 338.6249542236328, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18434.556007385254, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,338", - "created": 1614535188.338876, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 338.87600898742676, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18434.807062149048, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:48,339", - "created": 1614535188.339205, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 339.2050266265869, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18435.136079788208, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,339", - "created": 1614535188.339523, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 339.5230770111084, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18435.45413017273, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:48,340", - "created": 1614535188.340072, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 340.0719165802002, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18436.00296974182, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:48,340", - "created": 1614535188.340295, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 340.29507637023926, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18436.22612953186, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:48,340", - "created": 1614535188.340407, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 340.4068946838379, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18436.33794784546, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,340", - "created": 1614535188.340741, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 340.7409191131592, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18436.67197227478, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:48,340", - "created": 1614535188.340858, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 340.85798263549805, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18436.78903579712, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:48,341", - "created": 1614535188.341103, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 341.10307693481445, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18437.034130096436, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:48,341", - "created": 1614535188.341319, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 341.31908416748047, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18437.2501373291, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:48,341", - "created": 1614535188.341433, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 341.433048248291, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18437.364101409912, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:48,341", - "created": 1614535188.341565, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 341.5648937225342, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18437.495946884155, - "thread": 139996673603328, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.343116, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 343.11604499816895, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.04709815979, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.343305, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 343.3051109313965, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.236164093018, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.343394, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 343.39404106140137, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.325094223022, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.343482, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 343.48201751708984, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.41307067871, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.34358, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 343.5800075531006, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.51106071472, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.343654, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 343.65391731262207, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.584970474243, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.34376, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 343.76001358032227, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.691066741943, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.343837, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 343.83702278137207, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.768075942993, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,343", - "created": 1614535188.343938, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 343.93811225891113, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.869165420532, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:48,344", - "created": 1614535188.344025, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 344.0248966217041, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18439.955949783325, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,344", - "created": 1614535188.344137, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 344.13695335388184, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18440.068006515503, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:48,344", - "created": 1614535188.344212, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 344.2120552062988, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18440.14310836792, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:48,344", - "created": 1614535188.344455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 344.4550037384033, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18440.386056900024, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:48,344", - "created": 1614535188.344576, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 344.5758819580078, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18440.50693511963, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:48,344", - "created": 1614535188.344679, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 344.6791172027588, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18440.61017036438, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:48,344", - "created": 1614535188.344762, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 344.76208686828613, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18440.693140029907, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:48,344", - "created": 1614535188.344923, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 344.9230194091797, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18440.8540725708, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:48,345", - "created": 1614535188.345114, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 345.11399269104004, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18441.04504585266, - "thread": 139996665210624, - "threadName": "Thread-34" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:48,345", - "created": 1614535188.345237, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 345.23701667785645, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18441.168069839478, - "thread": 139996665210624, - "threadName": "Thread-34" - } - ], - "msecs": 658.5659980773926, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18754.497051239014, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.31332898139953613 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,660", - "created": 1614535188.660262, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,659", - "created": 1614535188.659686, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): True ()", - "module": "test", - "msecs": 659.6860885620117, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18755.617141723633, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,660", - "created": 1614535188.660014, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = True ()", - "module": "test", - "msecs": 660.0139141082764, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18755.944967269897, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 660.2621078491211, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18756.193161010742, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024819374084472656 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,662", - "created": 1614535188.662148, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,661", - "created": 1614535188.661281, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): True ()", - "module": "test", - "msecs": 661.2811088562012, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18757.212162017822, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 18:59:48,661", - "created": 1614535188.661594, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = True ()", - "module": "test", - "msecs": 661.5939140319824, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18757.524967193604, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 662.1479988098145, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 18758.079051971436, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0005540847778320312 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.703218936920166, - "time_finished": "2021-02-28 18:59:48,662", - "time_start": "2021-02-28 18:59:47,958" - }, - "_j-npsE0MEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:31,691", - "created": 1614535171.691059, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 35, - "message": "_j-npsE0MEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 691.0591125488281, - "msg": "_j-npsE0MEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1786.9901657104492, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702991, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:31,692", - "created": 1614535171.692416, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 692.4159526824951, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1788.3470058441162, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:31,693", - "created": 1614535171.693831, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 693.8309669494629, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1789.762020111084, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:31,694", - "created": 1614535171.694242, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 694.242000579834, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1790.173053741455, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:31,695", - "created": 1614535171.695106, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 695.106029510498, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1791.0370826721191, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:31,695", - "created": 1614535171.695453, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 695.4529285430908, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1791.383981704712, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:31,695", - "created": 1614535171.695783, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 695.7828998565674, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1791.7139530181885, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:31,696", - "created": 1614535171.696262, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 696.2618827819824, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1792.1929359436035, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:31,696", - "created": 1614535171.696664, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 696.6640949249268, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1792.5951480865479, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:31,696", - "created": 1614535171.696918, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 696.9180107116699, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1792.849063873291, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:31,697", - "created": 1614535171.697195, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 697.1950531005859, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1793.126106262207, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:31,697", - "created": 1614535171.697432, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 697.4320411682129, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1793.363094329834, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:31,697", - "created": 1614535171.697703, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 697.7028846740723, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1793.6339378356934, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:31,697", - "created": 1614535171.697933, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 697.9329586029053, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1793.8640117645264, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:31,698", - "created": 1614535171.698136, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 698.1360912322998, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1794.067144393921, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:31,698", - "created": 1614535171.698412, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 698.4119415283203, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1794.3429946899414, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:31,698", - "created": 1614535171.698695, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 698.6949443817139, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1794.625997543335, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:31,698", - "created": 1614535171.698978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 698.9779472351074, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1794.9090003967285, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:31,699", - "created": 1614535171.699209, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 699.2089748382568, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1795.140027999878, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:31,699", - "created": 1614535171.699435, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 699.4349956512451, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1795.3660488128662, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:31,699", - "created": 1614535171.699675, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 699.6750831604004, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1795.6061363220215, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:31,699", - "created": 1614535171.699884, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 699.8839378356934, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1795.8149909973145, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:31,700", - "created": 1614535171.700298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 700.2980709075928, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1796.2291240692139, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:31,700", - "created": 1614535171.700511, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 700.5109786987305, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1796.4420318603516, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.70108, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 701.0800838470459, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.011137008667, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.701299, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 701.2989521026611, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.2300052642822, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.701488, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 701.4880180358887, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.4190711975098, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.701562, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 701.5619277954102, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.4929809570312, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.701632, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 701.632022857666, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.563076019287, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.701711, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 701.7109394073486, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.6419925689697, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.701789, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 701.7889022827148, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.719955444336, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.701869, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 701.869010925293, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.800064086914, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:31,701", - "created": 1614535171.701942, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 701.941967010498, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.8730201721191, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 702.0149230957031, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1797.9459762573242, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702097, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 702.0969390869141, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.0279922485352, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702199, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 702.1989822387695, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.1300354003906, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702294, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 702.294111251831, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.2251644134521, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702381, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 702.380895614624, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.3119487762451, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 702.4691104888916, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.4001636505127, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702559, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 702.5589942932129, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.490047454834, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702651, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 702.6510238647461, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.5820770263672, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702738, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 702.7380466461182, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.6690998077393, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702819, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 702.8191089630127, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.7501621246338, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:31,702", - "created": 1614535171.702905, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 702.9049396514893, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.8359928131104, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 702.9910087585449, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1798.922061920166, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 8.606910705566406e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,047", - "created": 1614535172.047885, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:31,703", - "created": 1614535171.703174, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 703.1741142272949, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1799.105167388916, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:31,703", - "created": 1614535171.703267, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 703.2670974731445, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1799.1981506347656, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:31,703", - "created": 1614535171.70336, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 703.3600807189941, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1799.2911338806152, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:31,703", - "created": 1614535171.703502, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 703.5019397735596, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1799.4329929351807, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:31,703", - "created": 1614535171.703789, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 703.7889957427979, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1799.720048904419, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:31,703", - "created": 1614535171.703901, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 703.9010524749756, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1799.8321056365967, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:31,703", - "created": 1614535171.703993, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 703.9930820465088, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1799.9241352081299, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:31,704", - "created": 1614535171.704293, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 704.2930126190186, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1800.2240657806396, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:31,704", - "created": 1614535171.704719, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 704.719066619873, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1800.6501197814941, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,704", - "created": 1614535171.704896, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 704.8959732055664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1800.8270263671875, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705027, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 705.0271034240723, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1800.9581565856934, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705142, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 705.1420211791992, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.0730743408203, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705234, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 705.2340507507324, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.1651039123535, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705355, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 705.3549289703369, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.285982131958, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705425, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 705.4250240325928, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.3560771942139, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.70551, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 705.5099010467529, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.440954208374, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705577, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 705.5768966674805, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.5079498291016, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705681, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 705.6810855865479, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.612138748169, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705755, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 705.7549953460693, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.6860485076904, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.70586, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 705.859899520874, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.7909526824951, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:31,705", - "created": 1614535171.705941, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 705.9409618377686, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.8720149993896, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,706", - "created": 1614535171.706018, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 706.0179710388184, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1801.9490242004395, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:31,706", - "created": 1614535171.706089, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 706.0890197753906, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1802.0200729370117, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:31,706", - "created": 1614535171.706227, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 706.2270641326904, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1802.1581172943115, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:31,706", - "created": 1614535171.706419, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 706.4189910888672, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1802.3500442504883, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:31,706", - "created": 1614535171.70652, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 706.5200805664062, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1802.4511337280273, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:31,706", - "created": 1614535171.70665, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 706.6500186920166, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1802.5810718536377, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:31,713", - "created": 1614535171.713208, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 713.2079601287842, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1809.1390132904053, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:31,713", - "created": 1614535171.713465, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 713.4649753570557, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1809.3960285186768, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,713", - "created": 1614535171.713561, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 713.5610580444336, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1809.4921112060547, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:31,713", - "created": 1614535171.71364, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 713.6399745941162, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1809.5710277557373, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,713", - "created": 1614535171.71376, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 713.7598991394043, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1809.6909523010254, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,713", - "created": 1614535171.713832, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 713.831901550293, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1809.762954711914, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,713", - "created": 1614535171.713927, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 713.9270305633545, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1809.8580837249756, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,713", - "created": 1614535171.713993, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 713.9930725097656, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1809.9241256713867, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714076, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 714.076042175293, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.007095336914, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714153, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 714.1530513763428, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.0841045379639, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714258, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 714.2579555511475, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.1890087127686, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714332, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 714.332103729248, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.2631568908691, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714471, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 714.4711017608643, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.4021549224854, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714567, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 714.5669460296631, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.4979991912842, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714658, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 714.6580219268799, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.589075088501, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714738, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 714.7378921508789, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.6689453125, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:31,714", - "created": 1614535171.714901, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 714.9009704589844, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1810.8320236206055, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:31,715", - "created": 1614535171.715116, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 715.116024017334, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1811.047077178955, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:31,715", - "created": 1614535171.715226, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 715.2259349822998, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 1811.156988143921, - "thread": 139998879803136, - "threadName": "Thread-6" - } - ], - "msecs": 47.88494110107422, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2143.8159942626953, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3326590061187744 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,048", - "created": 1614535172.048842, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "manual_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 86, - "message": "No secret set", - "module": "test_communication", - "moduleLogger": [], - "msecs": 48.84195327758789, - "msg": "No secret set", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2144.773006439209, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,049", - "created": 1614535172.049636, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "manual_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 88, - "message": "Performing Authentification", - "module": "test_communication", - "moduleLogger": [], - "msecs": 49.635887145996094, - "msg": "Performing Authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2145.566940307617, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,050", - "created": 1614535172.05077, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Return Value of authentification method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Return Value of authentification method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,050", - "created": 1614535172.050198, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Return Value of authentification method): False ()", - "module": "test", - "msecs": 50.19807815551758, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2146.1291313171387, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Return Value of authentification method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,050", - "created": 1614535172.050514, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Return Value of authentification method): result = False ()", - "module": "test", - "msecs": 50.51398277282715, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2146.4450359344482, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 50.77004432678223, - "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2146.7010974884033, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002560615539550781 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,051", - "created": 1614535172.051626, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,051", - "created": 1614535172.05117, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): True ()", - "module": "test", - "msecs": 51.17011070251465, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2147.1011638641357, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,051", - "created": 1614535172.051396, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = True ()", - "module": "test", - "msecs": 51.39589309692383, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2147.326946258545, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 51.625967025756836, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2147.557020187378, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002300739288330078 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,052", - "created": 1614535172.052466, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,052", - "created": 1614535172.052012, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): True ()", - "module": "test", - "msecs": 52.011966705322266, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2147.9430198669434, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,052", - "created": 1614535172.05224, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = True ()", - "module": "test", - "msecs": 52.23989486694336, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2148.1709480285645, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 52.46591567993164, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2148.3969688415527, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00022602081298828125 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,053", - "created": 1614535172.05314, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "manual_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 95, - "message": "Different secrets set", - "module": "test_communication", - "moduleLogger": [], - "msecs": 53.13992500305176, - "msg": "Different secrets set", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2149.070978164673, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,054", - "created": 1614535172.054164, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,053", - "created": 1614535172.053604, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): False ()", - "module": "test", - "msecs": 53.6038875579834, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2149.5349407196045, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,053", - "created": 1614535172.0539, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = False ()", - "module": "test", - "msecs": 53.90000343322754, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2149.8310565948486, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 54.16393280029297, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2150.094985961914, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002639293670654297 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,054", - "created": 1614535172.054924, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,054", - "created": 1614535172.054525, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): False ()", - "module": "test", - "msecs": 54.524898529052734, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2150.455951690674, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,054", - "created": 1614535172.05473, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = False ()", - "module": "test", - "msecs": 54.72993850708008, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2150.660991668701, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 54.92401123046875, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2150.85506439209, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00019407272338867188 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,156", - "created": 1614535172.1563, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "manual_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 100, - "message": "Performing Authentification", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,055", - "created": 1614535172.055375, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 55.375099182128906, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2151.30615234375, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,072", - "created": 1614535172.072985, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 72.98493385314941, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2168.9159870147705, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,073", - "created": 1614535172.073538, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 73.53806495666504, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2169.469118118286, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,073", - "created": 1614535172.073793, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 73.79293441772461, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2169.7239875793457, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,074", - "created": 1614535172.07401, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 74.00989532470703, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2169.940948486328, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,074", - "created": 1614535172.074226, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 74.22590255737305, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2170.156955718994, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,074", - "created": 1614535172.074391, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 74.39088821411133, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2170.3219413757324, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,074", - "created": 1614535172.074607, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 74.60689544677734, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2170.5379486083984, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,074", - "created": 1614535172.074778, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 74.77807998657227, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2170.7091331481934, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,074", - "created": 1614535172.07497, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 74.97000694274902, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2170.90106010437, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,075", - "created": 1614535172.075131, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 75.13093948364258, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2171.0619926452637, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,075", - "created": 1614535172.07534, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 75.34003257751465, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2171.2710857391357, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,075", - "created": 1614535172.0755, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 75.5000114440918, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2171.431064605713, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,076", - "created": 1614535172.076409, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 76.40910148620605, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2172.340154647827, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,076", - "created": 1614535172.076619, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 76.61890983581543, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2172.5499629974365, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,076", - "created": 1614535172.076818, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 76.81798934936523, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2172.7490425109863, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,076", - "created": 1614535172.076981, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 76.9810676574707, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2172.912120819092, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 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 30 7d 10 4d cd 55" - ], - "asctime": "2021-02-28 18:59:32,077", - "created": 1614535172.077319, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 30 7d 10 4d cd 55", - "module": "stp", - "msecs": 77.31890678405762, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2173.2499599456787, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,077", - "created": 1614535172.077784, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 77.78406143188477, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2173.715114593506, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 18:59:32,078", - "created": 1614535172.078009, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 78.00889015197754, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2173.9399433135986, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'66f8120fc584b20713da0eb044b78c7a83fe95c98108855a45bb298a216d2c5b'" - ], - "asctime": "2021-02-28 18:59:32,078", - "created": 1614535172.078302, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'66f8120fc584b20713da0eb044b78c7a83fe95c98108855a45bb298a216d2c5b'\"", - "module": "__init__", - "msecs": 78.30190658569336, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2174.2329597473145, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 66 38 31 32 30 66 63 35 38 34 62 32 30 37 31 33 64" - ], - "asctime": "2021-02-28 18:59:32,081", - "created": 1614535172.081905, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 66 38 31 32 30 66 63 35 38 34 62 32 30 37 31 33 64", - "module": "__init__", - "msecs": 81.90488815307617, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2177.8359413146973, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 66 38 31 32 30 66 63 35 38 34 62 32 30 37 31 33 64" - ], - "asctime": "2021-02-28 18:59:32,082", - "created": 1614535172.082503, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 36 66 38 31 32 30 66 63 35 38 34 62 32 30 37 31 33 64", - "module": "__init__", - "msecs": 82.50308036804199, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2178.434133529663, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,082", - "created": 1614535172.082762, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 82.76200294494629, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2178.6930561065674, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,083", - "created": 1614535172.083005, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 83.00495147705078, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2178.936004638672, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,083", - "created": 1614535172.083289, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 83.28890800476074, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2179.219961166382, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,083", - "created": 1614535172.083504, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 83.50396156311035, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2179.4350147247314, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,083", - "created": 1614535172.083774, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 83.77408981323242, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2179.7051429748535, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,083", - "created": 1614535172.083991, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 83.99105072021484, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2179.922103881836, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,084", - "created": 1614535172.084229, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 84.2289924621582, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2180.1600456237793, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,084", - "created": 1614535172.084421, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 84.42091941833496, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2180.351972579956, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-server:", - "(64): 61 30 65 62 30 34 34 62 37 38 63 37 61 38 33 66 65 39 35 63 39 38 31 30 38 38 35 35 61 34 35 62 62 32 39 38 61 32 31 36 64 32 63 35 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d c1 41" - ], - "asctime": "2021-02-28 18:59:32,085", - "created": 1614535172.085099, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 61 30 65 62 30 34 34 62 37 38 63 37 61 38 33 66 65 39 35 63 39 38 31 30 38 38 35 35 61 34 35 62 62 32 39 38 61 32 31 36 64 32 63 35 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d c1 41", - "module": "__init__", - "msecs": 85.0989818572998, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2181.030035018921, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 61 30 65 62 30 34 34 62 37 38 63 37 61 38 33 66 65 39 35 63 39 38 31 30 38 38 35 35 61 34 35 62 62 32 39 38 61 32 31 36 64 32 63 35 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d c1 41" - ], - "asctime": "2021-02-28 18:59:32,085", - "created": 1614535172.085489, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 61 30 65 62 30 34 34 62 37 38 63 37 61 38 33 66 65 39 35 63 39 38 31 30 38 38 35 35 61 34 35 62 62 32 39 38 61 32 31 36 64 32 63 35 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d c1 41", - "module": "__init__", - "msecs": 85.48903465270996, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2181.420087814331, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,085", - "created": 1614535172.085923, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 85.9229564666748, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2181.854009628296, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,086", - "created": 1614535172.086109, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 86.10892295837402, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2182.039976119995, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-server:", - "(4): 05 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,086", - "created": 1614535172.086354, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (4): 05 2f 3a 3e", - "module": "__init__", - "msecs": 86.35401725769043, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2182.2850704193115, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(4): 05 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,086", - "created": 1614535172.086548, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (4): 05 2f 3a 3e", - "module": "__init__", - "msecs": 86.5480899810791, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2182.4791431427, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,086", - "created": 1614535172.08674, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 86.74001693725586, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2182.671070098877, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,086", - "created": 1614535172.086898, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 86.8980884552002, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2182.8291416168213, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 64 61 74 61 22 3a 20 22 36 36 66 38 31 32 30 66 63 35 38 34 62 32 30 37 31 33 64 61 30 65 62 30 34 34 62 37 38 63 37 61 38 33 66 65 39 35 63 39 38 31 30 38 38 35 35 61 34 35 62 62 32 39 38 61 32 31 36 64 32 63 35 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c1 41 05 2f" - ], - "asctime": "2021-02-28 18:59:32,087", - "created": 1614535172.087373, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 64 61 74 61 22 3a 20 22 36 36 66 38 31 32 30 66 63 35 38 34 62 32 30 37 31 33 64 61 30 65 62 30 34 34 62 37 38 63 37 61 38 33 66 65 39 35 63 39 38 31 30 38 38 35 35 61 34 35 62 62 32 39 38 61 32 31 36 64 32 63 35 62 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c1 41 05 2f", - "module": "stp", - "msecs": 87.37301826477051, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2183.3040714263916, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: seed", - "status: okay", - "u'66f8120fc584b20713da0eb044b78c7a83fe95c98108855a45bb298a216d2c5b'" - ], - "asctime": "2021-02-28 18:59:32,087", - "created": 1614535172.087815, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'66f8120fc584b20713da0eb044b78c7a83fe95c98108855a45bb298a216d2c5b'\"", - "module": "__init__", - "msecs": 87.8150463104248, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2183.746099472046, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "__authentificate_create_key__" - ], - "asctime": "2021-02-28 18:59:32,088", - "created": 1614535172.088042, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", - "module": "__init__", - "msecs": 88.04202079772949, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2183.9730739593506, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: key", - "status: okay", - "'6d490c66ab570aebeec156c39e58f24ee2d2506434466fc6ac8ac35458513c10ce2502956f033a195b7cbcf331bc87ce8bfe3c6e2dec874ff562bb8c406f6658'" - ], - "asctime": "2021-02-28 18:59:32,088", - "created": 1614535172.088375, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'6d490c66ab570aebeec156c39e58f24ee2d2506434466fc6ac8ac35458513c10ce2502956f033a195b7cbcf331bc87ce8bfe3c6e2dec874ff562bb8c406f6658'\"", - "module": "__init__", - "msecs": 88.37509155273438, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2184.3061447143555, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 64 34 39 30 63 36 36 61 62 35 37 30 61 65 62 65 65 63" - ], - "asctime": "2021-02-28 18:59:32,089", - "created": 1614535172.089533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 64 34 39 30 63 36 36 61 62 35 37 30 61 65 62 65 65 63", - "module": "__init__", - "msecs": 89.53309059143066, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2185.4641437530518, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 64 34 39 30 63 36 36 61 62 35 37 30 61 65 62 65 65 63" - ], - "asctime": "2021-02-28 18:59:32,089", - "created": 1614535172.089997, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 64 34 39 30 63 36 36 61 62 35 37 30 61 65 62 65 65 63", - "module": "__init__", - "msecs": 89.9970531463623, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2185.9281063079834, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,090", - "created": 1614535172.090216, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 90.21592140197754, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2186.1469745635986, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,090", - "created": 1614535172.090409, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 90.4090404510498, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2186.340093612671, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,090", - "created": 1614535172.090669, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 90.66891670227051, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2186.5999698638916, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,090", - "created": 1614535172.090885, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 90.88492393493652, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2186.8159770965576, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,091", - "created": 1614535172.091291, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 91.29095077514648, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2187.2220039367676, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,091", - "created": 1614535172.091502, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 91.50195121765137, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2187.4330043792725, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,091", - "created": 1614535172.091749, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 91.74895286560059, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2187.6800060272217, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,091", - "created": 1614535172.09196, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 91.95995330810547, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2187.8910064697266, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(64): 31 35 36 63 33 39 65 35 38 66 32 34 65 65 32 64 32 35 30 36 34 33 34 34 36 36 66 63 36 61 63 38 61 63 33 35 34 35 38 35 31 33 63 31 30 63 65 32 35 30 32 39 35 36 66 30 33 33 61 31 39 35 62 37" - ], - "asctime": "2021-02-28 18:59:32,092", - "created": 1614535172.092532, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 31 35 36 63 33 39 65 35 38 66 32 34 65 65 32 64 32 35 30 36 34 33 34 34 36 36 66 63 36 61 63 38 61 63 33 35 34 35 38 35 31 33 63 31 30 63 65 32 35 30 32 39 35 36 66 30 33 33 61 31 39 35 62 37", - "module": "__init__", - "msecs": 92.53191947937012, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2188.462972640991, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 31 35 36 63 33 39 65 35 38 66 32 34 65 65 32 64 32 35 30 36 34 33 34 34 36 36 66 63 36 61 63 38 61 63 33 35 34 35 38 35 31 33 63 31 30 63 65 32 35 30 32 39 35 36 66 30 33 33 61 31 39 35 62 37" - ], - "asctime": "2021-02-28 18:59:32,092", - "created": 1614535172.092954, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 31 35 36 63 33 39 65 35 38 66 32 34 65 65 32 64 32 35 30 36 34 33 34 34 36 36 66 63 36 61 63 38 61 63 33 35 34 35 38 35 31 33 63 31 30 63 65 32 35 30 32 39 35 36 66 30 33 33 61 31 39 35 62 37", - "module": "__init__", - "msecs": 92.95392036437988, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2188.884973526001, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(64): 63 62 63 66 33 33 31 62 63 38 37 63 65 38 62 66 65 33 63 36 65 32 64 65 63 38 37 34 66 66 35 36 32 62 62 38 63 34 30 36 66 36 36 35 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 2f a1" - ], - "asctime": "2021-02-28 18:59:32,093", - "created": 1614535172.093584, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 63 62 63 66 33 33 31 62 63 38 37 63 65 38 62 66 65 33 63 36 65 32 64 65 63 38 37 34 66 66 35 36 32 62 62 38 63 34 30 36 66 36 36 35 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 2f a1", - "module": "__init__", - "msecs": 93.58406066894531, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2189.5151138305664, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 63 62 63 66 33 33 31 62 63 38 37 63 65 38 62 66 65 33 63 36 65 32 64 65 63 38 37 34 66 66 35 36 32 62 62 38 63 34 30 36 66 36 36 35 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 2f a1" - ], - "asctime": "2021-02-28 18:59:32,093", - "created": 1614535172.093761, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 63 62 63 66 33 33 31 62 63 38 37 63 65 38 62 66 65 33 63 36 65 32 64 65 63 38 37 34 66 66 35 36 32 62 62 38 63 34 30 36 66 36 36 35 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d 2f a1", - "module": "__init__", - "msecs": 93.76096725463867, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2189.6920204162598, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,093", - "created": 1614535172.093961, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 93.96100044250488, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2189.892053604126, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,094", - "created": 1614535172.094049, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 94.04897689819336, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2189.9800300598145, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(4): 7f c6 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,094", - "created": 1614535172.094172, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (4): 7f c6 3a 3e", - "module": "__init__", - "msecs": 94.17200088500977, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2190.103054046631, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(4): 7f c6 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,094", - "created": 1614535172.09428, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (4): 7f c6 3a 3e", - "module": "__init__", - "msecs": 94.28000450134277, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2190.211057662964, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,094", - "created": 1614535172.09435, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 94.35009956359863, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2190.2811527252197, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,094", - "created": 1614535172.094417, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 94.41709518432617, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2190.3481483459473, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 30 2c 20 22 64 61 74 61 22 3a 20 22 36 64 34 39 30 63 36 36 61 62 35 37 30 61 65 62 65 65 63 31 35 36 63 33 39 65 35 38 66 32 34 65 65 32 64 32 35 30 36 34 33 34 34 36 36 66 63 36 61 63 38 61 63 33 35 34 35 38 35 31 33 63 31 30 63 65 32 35 30 32 39 35 36 66 30 33 33 61 31 39 35 62 37 63 62 63 66 33 33 31 62 63 38 37 63 65 38 62 66 65 33 63 36 65 32 64 65 63 38 37 34 66 66 35 36 32 62 62 38 63 34 30 36 66 36 36 35 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 2f a1 7f c6" - ], - "asctime": "2021-02-28 18:59:32,094", - "created": 1614535172.094682, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 30 2c 20 22 64 61 74 61 22 3a 20 22 36 64 34 39 30 63 36 36 61 62 35 37 30 61 65 62 65 65 63 31 35 36 63 33 39 65 35 38 66 32 34 65 65 32 64 32 35 30 36 34 33 34 34 36 36 66 63 36 61 63 38 61 63 33 35 34 35 38 35 31 33 63 31 30 63 65 32 35 30 32 39 35 36 66 30 33 33 61 31 39 35 62 37 63 62 63 66 33 33 31 62 63 38 37 63 65 38 62 66 65 33 63 36 65 32 64 65 63 38 37 34 66 66 35 36 32 62 62 38 63 34 30 36 66 36 36 35 38 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 2f a1 7f c6", - "module": "stp", - "msecs": 94.68197822570801, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2190.613031387329, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: key", - "status: okay", - "u'6d490c66ab570aebeec156c39e58f24ee2d2506434466fc6ac8ac35458513c10ce2502956f033a195b7cbcf331bc87ce8bfe3c6e2dec874ff562bb8c406f6658'" - ], - "asctime": "2021-02-28 18:59:32,094", - "created": 1614535172.094845, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'6d490c66ab570aebeec156c39e58f24ee2d2506434466fc6ac8ac35458513c10ce2502956f033a195b7cbcf331bc87ce8bfe3c6e2dec874ff562bb8c406f6658'\"", - "module": "__init__", - "msecs": 94.84505653381348, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2190.7761096954346, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "__authentificate_check_key__" - ], - "asctime": "2021-02-28 18:59:32,094", - "created": 1614535172.094934, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", - "module": "__init__", - "msecs": 94.93398666381836, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2190.8650398254395, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: key", - "status: okay", - "False" - ], - "asctime": "2021-02-28 18:59:32,095", - "created": 1614535172.09506, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"False\"", - "module": "__init__", - "msecs": 95.06011009216309, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2190.991163253784, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31" - ], - "asctime": "2021-02-28 18:59:32,096", - "created": 1614535172.096449, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31", - "module": "__init__", - "msecs": 96.44889831542969, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2192.379951477051, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31" - ], - "asctime": "2021-02-28 18:59:32,096", - "created": 1614535172.096652, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31", - "module": "__init__", - "msecs": 96.65203094482422, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2192.5830841064453, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,096", - "created": 1614535172.096746, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 96.74596786499023, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2192.6770210266113, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,096", - "created": 1614535172.096836, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 96.83609008789062, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2192.7671432495117, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,096", - "created": 1614535172.096934, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 96.93408012390137, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2192.8651332855225, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.09702, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 97.01991081237793, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2192.950963973999, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097107, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 97.10693359375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.037986755371, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097172, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 97.17202186584473, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.103075027466, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097246, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 97.24593162536621, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.1769847869873, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097308, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 97.30792045593262, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.2389736175537, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097391, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 97.39089012145996, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.321943283081, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097449, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 97.44906425476074, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.380117416382, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-server:", - "(7): 7d a1 48 27 7d 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097542, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (7): 7d a1 48 27 7d 3a 3e", - "module": "__init__", - "msecs": 97.54204750061035, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.4731006622314, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(7): 7d a1 48 27 7d 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097614, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (7): 7d a1 48 27 7d 3a 3e", - "module": "__init__", - "msecs": 97.61404991149902, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.54510307312, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097695, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 97.69511222839355, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.6261653900146, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097756, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 97.75590896606445, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.6869621276855, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(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 31 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 31 7d a1 48 27 7d" - ], - "asctime": "2021-02-28 18:59:32,097", - "created": 1614535172.097885, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 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 31 7d a1 48 27 7d", - "module": "stp", - "msecs": 97.8848934173584, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.8159465789795, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: key", - "status: okay", - "False" - ], - "asctime": "2021-02-28 18:59:32,098", - "created": 1614535172.098026, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"False\"", - "module": "__init__", - "msecs": 98.02603721618652, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2193.9570903778076, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-02-28 18:59:32,098", - "created": 1614535172.098107, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 98.10709953308105, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2194.038152694702, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:32,098", - "created": 1614535172.098174, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentificate_process_feedback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 375, - "message": "prot-client: Got negative authentification feedback", - "module": "__init__", - "msecs": 98.1740951538086, - "msg": "%s Got negative authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2194.1051483154297, - "thread": 139998879803136, - "threadName": "Thread-6" - } - ], - "msecs": 156.30006790161133, - "msg": "Performing Authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2252.2311210632324, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.058125972747802734 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,157", - "created": 1614535172.157834, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Return Value of authentification method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Return Value of authentification method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,157", - "created": 1614535172.157209, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Return Value of authentification method): False ()", - "module": "test", - "msecs": 157.20891952514648, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2253.1399726867676, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Return Value of authentification method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,157", - "created": 1614535172.157498, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Return Value of authentification method): result = False ()", - "module": "test", - "msecs": 157.49788284301758, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2253.4289360046387, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 157.83405303955078, - "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2253.765106201172, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003361701965332031 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,158", - "created": 1614535172.158753, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,158", - "created": 1614535172.158332, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): False ()", - "module": "test", - "msecs": 158.33210945129395, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2254.263162612915, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,158", - "created": 1614535172.15856, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = False ()", - "module": "test", - "msecs": 158.56003761291504, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2254.491090774536, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 158.7529182434082, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2254.6839714050293, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00019288063049316406 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,159", - "created": 1614535172.159438, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,159", - "created": 1614535172.159068, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): False ()", - "module": "test", - "msecs": 159.06810760498047, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2254.9991607666016, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,159", - "created": 1614535172.159257, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = False ()", - "module": "test", - "msecs": 159.2569351196289, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2255.18798828125, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 159.437894821167, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2255.368947982788, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00018095970153808594 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,159", - "created": 1614535172.159719, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "manual_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 107, - "message": "Identical secrets set", - "module": "test_communication", - "moduleLogger": [], - "msecs": 159.71899032592773, - "msg": "Identical secrets set", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2255.650043487549, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,361", - "created": 1614535172.361762, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "manual_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 109, - "message": "Performing Authentification", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,160", - "created": 1614535172.160203, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 160.2029800415039, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2256.134033203125, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,161", - "created": 1614535172.161321, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 161.32092475891113, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2257.251977920532, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,161", - "created": 1614535172.161872, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 161.87191009521484, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2257.802963256836, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,162", - "created": 1614535172.162153, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 162.1530055999756, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2258.0840587615967, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,162", - "created": 1614535172.162427, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 162.42694854736328, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2258.3580017089844, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,162", - "created": 1614535172.162829, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 162.82892227172852, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2258.7599754333496, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,163", - "created": 1614535172.163037, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 163.03706169128418, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2258.9681148529053, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,163", - "created": 1614535172.163288, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 163.28811645507812, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2259.219169616699, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,163", - "created": 1614535172.163475, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 163.47503662109375, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2259.406089782715, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,163", - "created": 1614535172.163678, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 163.67793083190918, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2259.6089839935303, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,163", - "created": 1614535172.163834, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 163.8340950012207, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2259.765148162842, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,164", - "created": 1614535172.164215, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 164.215087890625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2260.146141052246, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,164", - "created": 1614535172.164537, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 164.5369529724121, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2260.468006134033, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,164", - "created": 1614535172.164904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 164.90411758422852, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2260.8351707458496, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,165", - "created": 1614535172.165183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 165.18306732177734, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2261.1141204833984, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,165", - "created": 1614535172.165481, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 165.4810905456543, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2261.4121437072754, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,165", - "created": 1614535172.1658, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 165.8000946044922, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2261.7311477661133, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 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 30 7d 10 4d cd 55" - ], - "asctime": "2021-02-28 18:59:32,166", - "created": 1614535172.166401, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 30 7d 10 4d cd 55", - "module": "stp", - "msecs": 166.40090942382812, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2262.331962585449, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,167", - "created": 1614535172.167032, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 167.03200340270996, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2262.963056564331, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 18:59:32,167", - "created": 1614535172.167349, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 167.34910011291504, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2263.280153274536, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'86c73f84770eaa822f99f920d431e2e5746375067ff8f03fb7f2c533a17635af'" - ], - "asctime": "2021-02-28 18:59:32,167", - "created": 1614535172.167767, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'86c73f84770eaa822f99f920d431e2e5746375067ff8f03fb7f2c533a17635af'\"", - "module": "__init__", - "msecs": 167.76704788208008, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2263.698101043701, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 36 63 37 33 66 38 34 37 37 30 65 61 61 38 32 32 66 39" - ], - "asctime": "2021-02-28 18:59:32,198", - "created": 1614535172.19895, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 36 63 37 33 66 38 34 37 37 30 65 61 61 38 32 32 66 39", - "module": "__init__", - "msecs": 198.95005226135254, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2294.8811054229736, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 36 63 37 33 66 38 34 37 37 30 65 61 61 38 32 32 66 39" - ], - "asctime": "2021-02-28 18:59:32,199", - "created": 1614535172.199541, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 36 63 37 33 66 38 34 37 37 30 65 61 61 38 32 32 66 39", - "module": "__init__", - "msecs": 199.5410919189453, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2295.4721450805664, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,199", - "created": 1614535172.199798, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 199.7981071472168, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2295.729160308838, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,200", - "created": 1614535172.200009, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 200.00910758972168, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2295.940160751343, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,200", - "created": 1614535172.200302, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 200.3018856048584, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2296.2329387664795, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,200", - "created": 1614535172.200542, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 200.54197311401367, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2296.4730262756348, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,200", - "created": 1614535172.200849, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 200.84905624389648, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2296.7801094055176, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,201", - "created": 1614535172.201077, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 201.07698440551758, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2297.0080375671387, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,201", - "created": 1614535172.201366, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 201.36594772338867, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2297.2970008850098, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,201", - "created": 1614535172.201619, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 201.61890983581543, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2297.5499629974365, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-server:", - "(64): 39 66 39 32 30 64 34 33 31 65 32 65 35 37 34 36 33 37 35 30 36 37 66 66 38 66 30 33 66 62 37 66 32 63 35 33 33 61 31 37 36 33 35 61 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 0e 81" - ], - "asctime": "2021-02-28 18:59:32,202", - "created": 1614535172.202773, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 39 66 39 32 30 64 34 33 31 65 32 65 35 37 34 36 33 37 35 30 36 37 66 66 38 66 30 33 66 62 37 66 32 63 35 33 33 61 31 37 36 33 35 61 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 0e 81", - "module": "__init__", - "msecs": 202.7730941772461, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2298.704147338867, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 39 66 39 32 30 64 34 33 31 65 32 65 35 37 34 36 33 37 35 30 36 37 66 66 38 66 30 33 66 62 37 66 32 63 35 33 33 61 31 37 36 33 35 61 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 0e 81" - ], - "asctime": "2021-02-28 18:59:32,203", - "created": 1614535172.203317, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 39 66 39 32 30 64 34 33 31 65 32 65 35 37 34 36 33 37 35 30 36 37 66 66 38 66 30 33 66 62 37 66 32 63 35 33 33 61 31 37 36 33 35 61 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 0e 81", - "module": "__init__", - "msecs": 203.31692695617676, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2299.247980117798, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,203", - "created": 1614535172.203876, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 203.87601852416992, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2299.807071685791, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,204", - "created": 1614535172.204112, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 204.11205291748047, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2300.0431060791016, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-server:", - "(4): 83 02 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,204", - "created": 1614535172.204442, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (4): 83 02 3a 3e", - "module": "__init__", - "msecs": 204.44202423095703, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2300.373077392578, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(4): 83 02 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,204", - "created": 1614535172.204692, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (4): 83 02 3a 3e", - "module": "__init__", - "msecs": 204.69188690185547, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2300.6229400634766, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,204", - "created": 1614535172.204934, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 204.93388175964355, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2300.8649349212646, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,205", - "created": 1614535172.205133, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 205.13296127319336, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2301.0640144348145, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 64 61 74 61 22 3a 20 22 38 36 63 37 33 66 38 34 37 37 30 65 61 61 38 32 32 66 39 39 66 39 32 30 64 34 33 31 65 32 65 35 37 34 36 33 37 35 30 36 37 66 66 38 66 30 33 66 62 37 66 32 63 35 33 33 61 31 37 36 33 35 61 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0e 81 83 02" - ], - "asctime": "2021-02-28 18:59:32,205", - "created": 1614535172.205792, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 64 61 74 61 22 3a 20 22 38 36 63 37 33 66 38 34 37 37 30 65 61 61 38 32 32 66 39 39 66 39 32 30 64 34 33 31 65 32 65 35 37 34 36 33 37 35 30 36 37 66 66 38 66 30 33 66 62 37 66 32 63 35 33 33 61 31 37 36 33 35 61 66 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0e 81 83 02", - "module": "stp", - "msecs": 205.79195022583008, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2301.723003387451, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: seed", - "status: okay", - "u'86c73f84770eaa822f99f920d431e2e5746375067ff8f03fb7f2c533a17635af'" - ], - "asctime": "2021-02-28 18:59:32,206", - "created": 1614535172.2063, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"u'86c73f84770eaa822f99f920d431e2e5746375067ff8f03fb7f2c533a17635af'\"", - "module": "__init__", - "msecs": 206.3000202178955, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2302.2310733795166, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "__authentificate_create_key__" - ], - "asctime": "2021-02-28 18:59:32,206", - "created": 1614535172.206567, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", - "module": "__init__", - "msecs": 206.56704902648926, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2302.4981021881104, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: key", - "status: okay", - "'20a864dadb4b672eeef88ba33b1da828393965f3c3e7cc79a53f1227aacd6c78931b4c8962af810ba32eac733df7130776076560d68616bcd01c22388cc4ad75'" - ], - "asctime": "2021-02-28 18:59:32,206", - "created": 1614535172.20694, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'20a864dadb4b672eeef88ba33b1da828393965f3c3e7cc79a53f1227aacd6c78931b4c8962af810ba32eac733df7130776076560d68616bcd01c22388cc4ad75'\"", - "module": "__init__", - "msecs": 206.9399356842041, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2302.870988845825, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 30 61 38 36 34 64 61 64 62 34 62 36 37 32 65 65 65 66" - ], - "asctime": "2021-02-28 18:59:32,234", - "created": 1614535172.234342, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 30 61 38 36 34 64 61 64 62 34 62 36 37 32 65 65 65 66", - "module": "__init__", - "msecs": 234.34209823608398, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2330.273151397705, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 30 61 38 36 34 64 61 64 62 34 62 36 37 32 65 65 65 66" - ], - "asctime": "2021-02-28 18:59:32,234", - "created": 1614535172.234667, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 30 61 38 36 34 64 61 64 62 34 62 36 37 32 65 65 65 66", - "module": "__init__", - "msecs": 234.6670627593994, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2330.5981159210205, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,234", - "created": 1614535172.234799, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 234.79890823364258, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2330.7299613952637, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,234", - "created": 1614535172.234906, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 234.90595817565918, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2330.8370113372803, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,235", - "created": 1614535172.235035, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 235.03494262695312, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2330.965995788574, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,235", - "created": 1614535172.235152, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 235.152006149292, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2331.083059310913, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,235", - "created": 1614535172.235281, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 235.28099060058594, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2331.212043762207, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,235", - "created": 1614535172.235372, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 235.37206649780273, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2331.303119659424, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,235", - "created": 1614535172.235484, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 235.48388481140137, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2331.4149379730225, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,235", - "created": 1614535172.235581, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 235.5809211730957, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2331.511974334717, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(64): 38 38 62 61 33 33 62 31 64 61 38 32 38 33 39 33 39 36 35 66 33 63 33 65 37 63 63 37 39 61 35 33 66 31 32 32 37 61 61 63 64 36 63 37 38 39 33 31 62 34 63 38 39 36 32 61 66 38 31 30 62 61 33 32" - ], - "asctime": "2021-02-28 18:59:32,235", - "created": 1614535172.235867, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 38 38 62 61 33 33 62 31 64 61 38 32 38 33 39 33 39 36 35 66 33 63 33 65 37 63 63 37 39 61 35 33 66 31 32 32 37 61 61 63 64 36 63 37 38 39 33 31 62 34 63 38 39 36 32 61 66 38 31 30 62 61 33 32", - "module": "__init__", - "msecs": 235.86702346801758, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2331.7980766296387, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 38 38 62 61 33 33 62 31 64 61 38 32 38 33 39 33 39 36 35 66 33 63 33 65 37 63 63 37 39 61 35 33 66 31 32 32 37 61 61 63 64 36 63 37 38 39 33 31 62 34 63 38 39 36 32 61 66 38 31 30 62 61 33 32" - ], - "asctime": "2021-02-28 18:59:32,236", - "created": 1614535172.23607, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 38 38 62 61 33 33 62 31 64 61 38 32 38 33 39 33 39 36 35 66 33 63 33 65 37 63 63 37 39 61 35 33 66 31 32 32 37 61 61 63 64 36 63 37 38 39 33 31 62 34 63 38 39 36 32 61 66 38 31 30 62 61 33 32", - "module": "__init__", - "msecs": 236.069917678833, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2332.000970840454, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(64): 65 61 63 37 33 33 64 66 37 31 33 30 37 37 36 30 37 36 35 36 30 64 36 38 36 31 36 62 63 64 30 31 63 32 32 33 38 38 63 63 34 61 64 37 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d b2 17" - ], - "asctime": "2021-02-28 18:59:32,236", - "created": 1614535172.236446, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 65 61 63 37 33 33 64 66 37 31 33 30 37 37 36 30 37 36 35 36 30 64 36 38 36 31 36 62 63 64 30 31 63 32 32 33 38 38 63 63 34 61 64 37 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d b2 17", - "module": "__init__", - "msecs": 236.44590377807617, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2332.3769569396973, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 65 61 63 37 33 33 64 66 37 31 33 30 37 37 36 30 37 36 35 36 30 64 36 38 36 31 36 62 63 64 30 31 63 32 32 33 38 38 63 63 34 61 64 37 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d b2 17" - ], - "asctime": "2021-02-28 18:59:32,236", - "created": 1614535172.236648, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 65 61 63 37 33 33 64 66 37 31 33 30 37 37 36 30 37 36 35 36 30 64 36 38 36 31 36 62 63 64 30 31 63 32 32 33 38 38 63 63 34 61 64 37 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d b2 17", - "module": "__init__", - "msecs": 236.6480827331543, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2332.5791358947754, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,236", - "created": 1614535172.236875, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 236.87505722045898, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2332.80611038208, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,236", - "created": 1614535172.236981, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 236.98091506958008, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2332.911968231201, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(4): b6 0f 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,237", - "created": 1614535172.237124, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (4): b6 0f 3a 3e", - "module": "__init__", - "msecs": 237.12396621704102, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2333.055019378662, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(4): b6 0f 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,237", - "created": 1614535172.237229, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (4): b6 0f 3a 3e", - "module": "__init__", - "msecs": 237.2291088104248, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2333.160161972046, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,237", - "created": 1614535172.237333, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 237.3330593109131, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2333.264112472534, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,237", - "created": 1614535172.237446, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 237.44606971740723, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2333.3771228790283, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 30 2c 20 22 64 61 74 61 22 3a 20 22 32 30 61 38 36 34 64 61 64 62 34 62 36 37 32 65 65 65 66 38 38 62 61 33 33 62 31 64 61 38 32 38 33 39 33 39 36 35 66 33 63 33 65 37 63 63 37 39 61 35 33 66 31 32 32 37 61 61 63 64 36 63 37 38 39 33 31 62 34 63 38 39 36 32 61 66 38 31 30 62 61 33 32 65 61 63 37 33 33 64 66 37 31 33 30 37 37 36 30 37 36 35 36 30 64 36 38 36 31 36 62 63 64 30 31 63 32 32 33 38 38 63 63 34 61 64 37 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d b2 17 b6 0f" - ], - "asctime": "2021-02-28 18:59:32,238", - "created": 1614535172.238009, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 30 2c 20 22 64 61 74 61 22 3a 20 22 32 30 61 38 36 34 64 61 64 62 34 62 36 37 32 65 65 65 66 38 38 62 61 33 33 62 31 64 61 38 32 38 33 39 33 39 36 35 66 33 63 33 65 37 63 63 37 39 61 35 33 66 31 32 32 37 61 61 63 64 36 63 37 38 39 33 31 62 34 63 38 39 36 32 61 66 38 31 30 62 61 33 32 65 61 63 37 33 33 64 66 37 31 33 30 37 37 36 30 37 36 35 36 30 64 36 38 36 31 36 62 63 64 30 31 63 32 32 33 38 38 63 63 34 61 64 37 35 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d b2 17 b6 0f", - "module": "stp", - "msecs": 238.00897598266602, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2333.940029144287, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: key", - "status: okay", - "u'20a864dadb4b672eeef88ba33b1da828393965f3c3e7cc79a53f1227aacd6c78931b4c8962af810ba32eac733df7130776076560d68616bcd01c22388cc4ad75'" - ], - "asctime": "2021-02-28 18:59:32,238", - "created": 1614535172.238411, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"u'20a864dadb4b672eeef88ba33b1da828393965f3c3e7cc79a53f1227aacd6c78931b4c8962af810ba32eac733df7130776076560d68616bcd01c22388cc4ad75'\"", - "module": "__init__", - "msecs": 238.41094970703125, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2334.3420028686523, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "__authentificate_check_key__" - ], - "asctime": "2021-02-28 18:59:32,238", - "created": 1614535172.238623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", - "module": "__init__", - "msecs": 238.62290382385254, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2334.5539569854736, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:32,238", - "created": 1614535172.238914, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 238.91401290893555, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2334.8450660705566, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" - ], - "asctime": "2021-02-28 18:59:32,272", - "created": 1614535172.272063, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", - "module": "__init__", - "msecs": 272.0630168914795, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2367.9940700531006, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d" - ], - "asctime": "2021-02-28 18:59:32,272", - "created": 1614535172.27266, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 7d", - "module": "__init__", - "msecs": 272.6600170135498, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2368.591070175171, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,272", - "created": 1614535172.272916, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 272.9160785675049, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2368.847131729126, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,273", - "created": 1614535172.273162, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 273.1618881225586, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2369.0929412841797, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,273", - "created": 1614535172.273414, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 273.41389656066895, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2369.34494972229, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,273", - "created": 1614535172.273609, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 273.608922958374, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2369.539976119995, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,273", - "created": 1614535172.273912, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 273.9119529724121, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2369.843006134033, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,274", - "created": 1614535172.274117, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 274.11699295043945, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2370.0480461120605, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,274", - "created": 1614535172.274353, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 274.35302734375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2370.284080505371, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,274", - "created": 1614535172.274532, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 274.5320796966553, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2370.4631328582764, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,274", - "created": 1614535172.274777, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 274.7769355773926, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2370.7079887390137, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,274", - "created": 1614535172.274956, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 274.95598793029785, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2370.887041091919, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-server:", - "(6): 11 d3 26 78 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,275", - "created": 1614535172.275245, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 11 d3 26 78 3a 3e", - "module": "__init__", - "msecs": 275.24495124816895, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2371.17600440979, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(6): 11 d3 26 78 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,275", - "created": 1614535172.275471, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 11 d3 26 78 3a 3e", - "module": "__init__", - "msecs": 275.4709720611572, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2371.4020252227783, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,275", - "created": 1614535172.275661, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 275.6609916687012, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2371.5920448303223, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,275", - "created": 1614535172.275814, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 275.8140563964844, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2371.7451095581055, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(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 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78" - ], - "asctime": "2021-02-28 18:59:32,276", - "created": 1614535172.276126, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 31 7d 11 d3 26 78", - "module": "stp", - "msecs": 276.1259078979492, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2372.0569610595703, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:32,276", - "created": 1614535172.276566, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 276.5660285949707, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2372.497081756592, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-02-28 18:59:32,276", - "created": 1614535172.276789, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 276.78894996643066, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2372.7200031280518, - "thread": 139998879803136, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:32,276", - "created": 1614535172.276965, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentificate_process_feedback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 372, - "message": "prot-client: Got positive authentification feedback", - "module": "__init__", - "msecs": 276.9649028778076, - "msg": "%s Got positive authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2372.8959560394287, - "thread": 139998879803136, - "threadName": "Thread-6" - } - ], - "msecs": 361.76204681396484, - "msg": "Performing Authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2457.693099975586, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.08479714393615723 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,363", - "created": 1614535172.363412, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Return Value of authentification method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Return Value of authentification method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,362", - "created": 1614535172.362781, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Return Value of authentification method): True ()", - "module": "test", - "msecs": 362.7810478210449, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2458.712100982666, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Return Value of authentification method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,363", - "created": 1614535172.363104, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Return Value of authentification method): result = True ()", - "module": "test", - "msecs": 363.10410499572754, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2459.0351581573486, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 363.41190338134766, - "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2459.3429565429688, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003077983856201172 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,364", - "created": 1614535172.364435, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,363", - "created": 1614535172.363885, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): True ()", - "module": "test", - "msecs": 363.88492584228516, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2459.8159790039062, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,364", - "created": 1614535172.364167, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = True ()", - "module": "test", - "msecs": 364.1669750213623, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2460.0980281829834, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 364.43495750427246, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2460.3660106658936, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00026798248291015625 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,365", - "created": 1614535172.36586, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,364", - "created": 1614535172.364911, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): True ()", - "module": "test", - "msecs": 364.9110794067383, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2460.8421325683594, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "True", - "" - ], - "asctime": "2021-02-28 18:59:32,365", - "created": 1614535172.365223, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = True ()", - "module": "test", - "msecs": 365.2229309082031, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2461.153984069824, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 365.8599853515625, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2461.7910385131836, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.000637054443359375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,366", - "created": 1614535172.366922, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "manual_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "Corrupting the authentification mechanism", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:32,366", - "created": 1614535172.366385, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 366.38498306274414, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2462.3160362243652, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:32,366", - "created": 1614535172.366688, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 366.6880130767822, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2462.6190662384033, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 366.92190170288086, - "msg": "Corrupting the authentification mechanism", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2462.852954864502, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002338886260986328 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:32,769", - "created": 1614535172.769475, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "manual_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 119, - "message": "Performing Authentification", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,367", - "created": 1614535172.367409, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 367.40899085998535, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2463.3400440216064, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,372", - "created": 1614535172.372851, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 372.8508949279785, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2468.7819480895996, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:32,373", - "created": 1614535172.37345, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 373.45004081726074, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2469.381093978882, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,373", - "created": 1614535172.373796, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 373.7959861755371, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2469.727039337158, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:32,374", - "created": 1614535172.374024, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 374.0239143371582, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2469.9549674987793, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,374", - "created": 1614535172.374309, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 374.3090629577637, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2470.2401161193848, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,374", - "created": 1614535172.374503, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 374.50289726257324, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2470.4339504241943, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,374", - "created": 1614535172.374752, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 374.7520446777344, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2470.6830978393555, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,374", - "created": 1614535172.374929, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 374.92895126342773, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2470.860004425049, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,375", - "created": 1614535172.375148, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 375.14805793762207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2471.079111099243, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,375", - "created": 1614535172.375348, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 375.3480911254883, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2471.2791442871094, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,375", - "created": 1614535172.375588, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 375.58794021606445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2471.5189933776855, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:32,375", - "created": 1614535172.375758, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 375.75793266296387, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2471.688985824585, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,376", - "created": 1614535172.37603, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 376.02996826171875, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2471.96102142334, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(6): 10 4d cd 55 3a 3e" - ], - "asctime": "2021-02-28 18:59:32,376", - "created": 1614535172.376242, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 10 4d cd 55 3a 3e", - "module": "__init__", - "msecs": 376.24192237854004, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2472.172975540161, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:32,376", - "created": 1614535172.376456, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 376.45602226257324, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2472.3870754241943, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:32,376", - "created": 1614535172.376643, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 376.64294242858887, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2472.57399559021, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 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 30 7d 10 4d cd 55" - ], - "asctime": "2021-02-28 18:59:32,377", - "created": 1614535172.377004, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 30 7d 10 4d cd 55", - "module": "stp", - "msecs": 377.00390815734863, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2472.9349613189697, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:32,377", - "created": 1614535172.377518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 377.5179386138916, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2473.4489917755127, - "thread": 139998888195840, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 18:59:32,377", - "created": 1614535172.377862, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 377.86197662353516, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2473.7930297851562, - "thread": 139998888195840, - "threadName": "Thread-5" - } - ], - "msecs": 769.474983215332, - "msg": "Performing Authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2865.406036376953, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3916130065917969 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,770", - "created": 1614535172.770648, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Return Value of authentification method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Return Value of authentification method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,770", - "created": 1614535172.770167, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Return Value of authentification method): False ()", - "module": "test", - "msecs": 770.1671123504639, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2866.098165512085, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Return Value of authentification method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,770", - "created": 1614535172.770426, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Return Value of authentification method): result = False ()", - "module": "test", - "msecs": 770.4260349273682, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2866.3570880889893, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 770.6480026245117, - "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2866.579055786133, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002219676971435547 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,771", - "created": 1614535172.771397, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,770", - "created": 1614535172.770996, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): False ()", - "module": "test", - "msecs": 770.99609375, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2866.927146911621, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,771", - "created": 1614535172.771196, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = False ()", - "module": "test", - "msecs": 771.1958885192871, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2867.126941680908, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 771.3971138000488, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2867.32816696167, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00020122528076171875 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,772", - "created": 1614535172.772192, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,771", - "created": 1614535172.771793, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): False ()", - "module": "test", - "msecs": 771.7928886413574, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2867.7239418029785, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:32,771", - "created": 1614535172.771995, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = False ()", - "module": "test", - "msecs": 771.9950675964355, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2867.9261207580566, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 772.1920013427734, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 2868.1230545043945, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00019693374633789062 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 1.0811328887939453, - "time_finished": "2021-02-28 18:59:32,772", - "time_start": "2021-02-28 18:59:31,691" - }, - "_k-Q4EE0oEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:41,746", - "created": 1614535181.746868, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 40, - "message": "_k-Q4EE0oEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 746.8678951263428, - "msg": "_k-Q4EE0oEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11842.798948287964, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756339, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,748", - "created": 1614535181.74804, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 748.039960861206, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11843.971014022827, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,749", - "created": 1614535181.749189, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 749.1888999938965, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11845.119953155518, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,749", - "created": 1614535181.749575, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 749.5748996734619, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11845.505952835083, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:41,750", - "created": 1614535181.750289, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 750.2889633178711, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11846.220016479492, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:41,750", - "created": 1614535181.750568, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 750.5679130554199, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11846.498966217041, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:41,750", - "created": 1614535181.750876, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 750.8759498596191, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11846.80700302124, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:41,751", - "created": 1614535181.751153, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 751.1529922485352, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11847.084045410156, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:41,751", - "created": 1614535181.751349, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 751.3489723205566, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11847.280025482178, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:41,751", - "created": 1614535181.751519, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 751.518964767456, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11847.450017929077, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:41,751", - "created": 1614535181.751748, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 751.7480850219727, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11847.679138183594, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:41,751", - "created": 1614535181.751974, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 751.9741058349609, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11847.905158996582, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:41,752", - "created": 1614535181.752213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 752.2130012512207, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11848.144054412842, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:41,752", - "created": 1614535181.752434, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 752.4340152740479, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11848.365068435669, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:41,752", - "created": 1614535181.752643, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 752.6431083679199, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11848.574161529541, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:41,752", - "created": 1614535181.752871, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 752.871036529541, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11848.802089691162, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:41,753", - "created": 1614535181.753235, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 753.2351016998291, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11849.16615486145, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:41,753", - "created": 1614535181.753774, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 753.7739276885986, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11849.70498085022, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:41,754", - "created": 1614535181.754015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 754.0149688720703, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11849.946022033691, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:41,754", - "created": 1614535181.754249, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 754.249095916748, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11850.18014907837, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:41,754", - "created": 1614535181.754378, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 754.378080368042, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11850.309133529663, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:41,754", - "created": 1614535181.754461, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 754.4610500335693, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11850.39210319519, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:41,754", - "created": 1614535181.754541, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 754.5409202575684, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11850.47197341919, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:41,754", - "created": 1614535181.75462, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 754.6200752258301, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11850.551128387451, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:41,754", - "created": 1614535181.754847, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 754.8470497131348, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11850.778102874756, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:41,754", - "created": 1614535181.754943, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 754.9428939819336, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11850.873947143555, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.75505, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 755.0499439239502, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11850.980997085571, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755154, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 755.1538944244385, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.08494758606, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755221, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 755.220890045166, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.151943206787, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755286, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 755.2859783172607, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.217031478882, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755355, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 755.3548812866211, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.285934448242, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755427, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 755.4268836975098, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.35793685913, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755505, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 755.5050849914551, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.436138153076, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755576, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 755.5758953094482, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.50694847107, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.75564, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 755.6400299072266, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.571083068848, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755714, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 755.713939666748, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.64499282837, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755793, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 755.7930946350098, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.72414779663, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755859, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 755.8588981628418, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.789951324463, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:41,755", - "created": 1614535181.755927, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 755.9270858764648, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.858139038086, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756004, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 756.0040950775146, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11851.935148239136, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756076, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 756.0760974884033, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.007150650024, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756143, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 756.1430931091309, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.074146270752, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756207, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 756.2069892883301, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.138042449951, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756273, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 756.2730312347412, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.204084396362, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 756.3390731811523, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.270126342773, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 6.604194641113281e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,100", - "created": 1614535182.100606, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756475, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 756.4749717712402, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.406024932861, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756547, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 756.5469741821289, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.47802734375, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756615, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 756.6149234771729, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.545976638794, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 756.7260265350342, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.657079696655, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,756", - "created": 1614535181.756995, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 756.9949626922607, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11852.926015853882, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:41,757", - "created": 1614535181.757091, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 757.0910453796387, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11853.02209854126, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:41,757", - "created": 1614535181.757179, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 757.1790218353271, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11853.110074996948, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:41,757", - "created": 1614535181.757845, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 757.8449249267578, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11853.775978088379, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.758145, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 758.1450939178467, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.076147079468, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.758272, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 758.2719326019287, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.20298576355, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.758386, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 758.3858966827393, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.31694984436, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.758534, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 758.5339546203613, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.465007781982, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.758646, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 758.6460113525391, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.57706451416, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.758764, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 758.7640285491943, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.695081710815, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.758832, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 758.8319778442383, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.76303100586, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.758912, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 758.9120864868164, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.843139648438, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,758", - "created": 1614535181.75898, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 758.9800357818604, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11854.911088943481, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759072, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 759.0720653533936, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.003118515015, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759133, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 759.1331005096436, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.064153671265, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759232, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 759.2320442199707, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.163097381592, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759311, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 759.3109607696533, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.242013931274, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759388, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 759.3879699707031, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.319023132324, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.75945, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 759.4499588012695, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.38101196289, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759581, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 759.5810890197754, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.512142181396, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759744, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 759.7439289093018, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.674982070923, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759831, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 759.8309516906738, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.762004852295, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:41,759", - "created": 1614535181.759941, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 759.9411010742188, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11855.87215423584, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:41,765", - "created": 1614535181.765537, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 765.5370235443115, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11861.468076705933, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:41,765", - "created": 1614535181.765796, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 765.7959461212158, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11861.726999282837, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,765", - "created": 1614535181.765888, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 765.887975692749, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11861.81902885437, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:41,765", - "created": 1614535181.765957, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 765.9571170806885, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11861.88817024231, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766052, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 766.0520076751709, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11861.983060836792, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766119, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 766.1190032958984, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.05005645752, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.76621, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 766.2100791931152, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.141132354736, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766274, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 766.2739753723145, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.205028533936, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766383, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 766.3829326629639, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.313985824585, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766578, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 766.577959060669, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.50901222229, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766675, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 766.6749954223633, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.606048583984, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766738, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 766.7379379272461, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.668991088867, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766863, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 766.8631076812744, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.794160842896, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:41,766", - "created": 1614535181.766947, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 766.9470310211182, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.87808418274, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:41,767", - "created": 1614535181.767022, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 767.021894454956, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11862.952947616577, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:41,767", - "created": 1614535181.767084, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 767.0838832855225, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11863.014936447144, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:41,767", - "created": 1614535181.767215, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 767.2150135040283, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11863.14606666565, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:41,767", - "created": 1614535181.767427, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 767.4269676208496, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11863.35802078247, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:41,767", - "created": 1614535181.767532, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 767.5321102142334, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 11863.463163375854, - "thread": 139998250645248, - "threadName": "Thread-16" - } - ], - "msecs": 100.60596466064453, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12196.537017822266, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.33307385444641113 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,404", - "created": 1614535182.404351, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 315, - "message": "Transfering a message client -> server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:42,101", - "created": 1614535182.101853, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 101.8528938293457, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12197.783946990967, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:42,125", - "created": 1614535182.125904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 125.90408325195312, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12221.835136413574, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:42,126", - "created": 1614535182.126552, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 126.55210494995117, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12222.483158111572, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,126", - "created": 1614535182.126855, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 126.85489654541016, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12222.785949707031, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:42,127", - "created": 1614535182.127094, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 127.09403038024902, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12223.02508354187, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,127", - "created": 1614535182.127386, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 127.38609313964844, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12223.31714630127, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,127", - "created": 1614535182.127841, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 127.84099578857422, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12223.772048950195, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,128", - "created": 1614535182.128199, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 128.19910049438477, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12224.130153656006, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,128", - "created": 1614535182.128542, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 128.5419464111328, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12224.472999572754, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,128", - "created": 1614535182.128831, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 128.8309097290039, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12224.761962890625, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,129", - "created": 1614535182.129042, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 129.0419101715088, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12224.97296333313, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,129", - "created": 1614535182.129546, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 129.5459270477295, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12225.47698020935, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,129", - "created": 1614535182.129969, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 129.96888160705566, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12225.899934768677, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,130", - "created": 1614535182.130322, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 130.32197952270508, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12226.253032684326, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,130", - "created": 1614535182.130557, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 130.55706024169922, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12226.48811340332, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,130", - "created": 1614535182.130939, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 130.93900680541992, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12226.870059967041, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:42,131", - "created": 1614535182.13118, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 131.1800479888916, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12227.111101150513, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - "(88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" - ], - "asctime": "2021-02-28 18:59:42,131", - "created": 1614535182.131729, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "stp", - "msecs": 131.7288875579834, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12227.659940719604, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "u'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:42,132", - "created": 1614535182.132196, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 132.19594955444336, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12228.127002716064, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,132", - "created": 1614535182.132495, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 132.49492645263672, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12228.425979614258, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "18", - "34" - ], - "asctime": "2021-02-28 18:59:42,403", - "created": 1614535182.403908, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 18; data_id: 34) not in buffer.", - "module": "__init__", - "msecs": 403.90801429748535, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12499.839067459106, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 404.35099601745605, - "msg": "Transfering a message client -> server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12500.282049179077, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0004429817199707031 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:42,406", - "created": 1614535182.406111, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:42,405", - "created": 1614535182.405458, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 405.4579734802246, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12501.389026641846, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:42,405", - "created": 1614535182.405826, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 405.8260917663574, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12501.757144927979, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 406.1110019683838, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12502.042055130005, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002849102020263672 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:42,407", - "created": 1614535182.407466, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:42,406", - "created": 1614535182.406816, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): None ()", - "module": "test", - "msecs": 406.8160057067871, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12502.747058868408, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:42,407", - "created": 1614535182.407221, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = None ()", - "module": "test", - "msecs": 407.22107887268066, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12503.152132034302, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 407.46593475341797, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12503.396987915039, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002448558807373047 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,409", - "created": 1614535182.409049, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 320, - "message": "Adding service to server instance for the transmit message", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "17", - "18" - ], - "asctime": "2021-02-28 18:59:42,408", - "created": 1614535182.408712, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=17 and Response=18", - "module": "__init__", - "msecs": 408.71191024780273, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12504.642963409424, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 409.04903411865234, - "msg": "Adding service to server instance for the transmit message", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12504.980087280273, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003371238708496094 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:42,610", - "created": 1614535182.610851, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 324, - "message": "Transfering a message client -> server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:42,409", - "created": 1614535182.409526, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 409.52610969543457, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12505.457162857056, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:42,434", - "created": 1614535182.434027, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 434.02695655822754, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12529.958009719849, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72" - ], - "asctime": "2021-02-28 18:59:42,434", - "created": 1614535182.434568, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72", - "module": "__init__", - "msecs": 434.567928314209, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12530.49898147583, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,434", - "created": 1614535182.434914, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 434.91411209106445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12530.845165252686, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:42,435", - "created": 1614535182.435176, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 435.17589569091797, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12531.106948852539, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,435", - "created": 1614535182.435493, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 435.49299240112305, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12531.424045562744, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,435", - "created": 1614535182.435835, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 435.8348846435547, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12531.765937805176, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,436", - "created": 1614535182.436216, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 436.2161159515381, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12532.14716911316, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,436", - "created": 1614535182.436454, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 436.45405769348145, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12532.385110855103, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,436", - "created": 1614535182.436814, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 436.8140697479248, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12532.745122909546, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,437", - "created": 1614535182.437057, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 437.0570182800293, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12532.98807144165, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-client:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,437", - "created": 1614535182.437708, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 437.70790100097656, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12533.638954162598, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-server:", - "(32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,438", - "created": 1614535182.43805, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 7d 7a 6c e4 9b 3a 3e", - "module": "__init__", - "msecs": 438.0500316619873, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12533.981084823608, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,438", - "created": 1614535182.438339, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 438.3389949798584, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12534.27004814148, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,438", - "created": 1614535182.438531, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 438.53092193603516, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12534.461975097656, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,438", - "created": 1614535182.438774, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 438.77410888671875, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12534.70516204834, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:42,438", - "created": 1614535182.438964, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 438.9638900756836, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12534.894943237305, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - "(88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b" - ], - "asctime": "2021-02-28 18:59:42,439", - "created": 1614535182.439426, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 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 37 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 33 34 7d 7a 6c e4 9b", - "module": "stp", - "msecs": 439.4259452819824, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12535.356998443604, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "u'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:42,439", - "created": 1614535182.439873, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"u'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 439.87298011779785, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12535.804033279419, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,440", - "created": 1614535182.440146, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 486, - "message": "prot-server: Incomming message with no registered callback. Sending negative response.", - "module": "__init__", - "msecs": 440.14596939086914, - "msg": "%s Incomming message with no registered callback. Sending negative response.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12536.07702255249, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: 18, data_id: 34", - "status: no callback for service, data buffered", - "None" - ], - "asctime": "2021-02-28 18:59:42,440", - "created": 1614535182.440489, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-server: TX -> service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", - "module": "__init__", - "msecs": 440.4890537261963, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12536.420106887817, - "thread": 139998259037952, - "threadName": "Thread-15" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" - ], - "asctime": "2021-02-28 18:59:42,470", - "created": 1614535182.470541, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", - "module": "__init__", - "msecs": 470.54100036621094, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12566.472053527832, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33" - ], - "asctime": "2021-02-28 18:59:42,470", - "created": 1614535182.470866, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 33", - "module": "__init__", - "msecs": 470.86596488952637, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12566.797018051147, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,470", - "created": 1614535182.470997, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 470.9970951080322, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12566.928148269653, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:42,471", - "created": 1614535182.471124, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 471.12393379211426, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12567.054986953735, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,471", - "created": 1614535182.471252, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 471.2519645690918, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12567.183017730713, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,471", - "created": 1614535182.471357, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 471.3571071624756, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12567.288160324097, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,471", - "created": 1614535182.471488, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 471.48799896240234, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12567.419052124023, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,471", - "created": 1614535182.471579, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 471.57907485961914, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12567.51012802124, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,471", - "created": 1614535182.471715, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 471.71497344970703, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12567.646026611328, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,471", - "created": 1614535182.471819, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 471.8189239501953, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12567.749977111816, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,471", - "created": 1614535182.471965, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 471.96507453918457, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12567.896127700806, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,472", - "created": 1614535182.472081, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 472.08094596862793, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12568.011999130249, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "comm-server:", - "(8): 34 7d e8 ee d8 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,472", - "created": 1614535182.472254, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (8): 34 7d e8 ee d8 5c 3a 3e", - "module": "__init__", - "msecs": 472.25403785705566, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12568.185091018677, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "comm-client:", - "(8): 34 7d e8 ee d8 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,472", - "created": 1614535182.472391, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (8): 34 7d e8 ee d8 5c 3a 3e", - "module": "__init__", - "msecs": 472.39089012145996, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12568.321943283081, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,472", - "created": 1614535182.472529, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 472.52893447875977, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12568.45998764038, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:42,472", - "created": 1614535182.47265, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 472.65005111694336, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12568.581104278564, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - "(64): 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 38 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 33 34 7d e8 ee d8 5c" - ], - "asctime": "2021-02-28 18:59:42,472", - "created": 1614535182.472968, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (64): 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 38 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 33 34 7d e8 ee d8 5c", - "module": "stp", - "msecs": 472.96810150146484, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12568.899154663086, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 18, data_id: 34", - "status: no callback for service, data buffered", - "None" - ], - "asctime": "2021-02-28 18:59:42,473", - "created": 1614535182.473272, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-client: RX <- service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", - "module": "__init__", - "msecs": 473.27208518981934, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12569.20313835144, - "thread": 139998250645248, - "threadName": "Thread-16" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,473", - "created": 1614535182.473522, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 473.5219478607178, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12569.453001022339, - "thread": 139998250645248, - "threadName": "Thread-16" - } - ], - "msecs": 610.8510494232178, - "msg": "Transfering a message client -> server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12706.782102584839, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.1373291015625 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:42,612", - "created": 1614535182.612085, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:42,611", - "created": 1614535182.611535, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 611.5350723266602, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12707.466125488281, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:42,611", - "created": 1614535182.611821, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 611.8209362030029, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12707.751989364624, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 612.0851039886475, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12708.016157150269, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00026416778564453125 - }, - { - "args": [ - "{u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:42,612", - "created": 1614535182.613, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:42,612", - "created": 1614535182.612493, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {u'status': 1, u'service_id': 18, u'data': None, u'data_id': 34} ()", - "module": "test", - "msecs": 612.4930381774902, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12708.424091339111, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'status': 1, 'service_id': 18, 'data': None, 'data_id': 34}", - "" - ], - "asctime": "2021-02-28 18:59:42,612", - "created": 1614535182.612735, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'status': 1, 'service_id': 18, 'data': None, 'data_id': 34} ()", - "module": "test", - "msecs": 612.7350330352783, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12708.6660861969, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 612.9999160766602, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 12708.930969238281, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00026488304138183594 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.8661320209503174, - "time_finished": "2021-02-28 18:59:42,612", - "time_start": "2021-02-28 18:59:41,746" - }, - "_k7opsE4LEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 18:59:45,059", - "created": 1614535185.059122, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 48, - "message": "_k7opsE4LEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 59.12208557128906, - "msg": "_k7opsE4LEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15155.05313873291, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067689, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:45,060", - "created": 1614535185.060344, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 60.34398078918457, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15156.275033950806, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:45,062", - "created": 1614535185.062052, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 62.052011489868164, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15157.98306465149, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:45,062", - "created": 1614535185.062378, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 62.3779296875, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15158.308982849121, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:45,062", - "created": 1614535185.06285, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 62.849998474121094, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15158.781051635742, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:45,063", - "created": 1614535185.063098, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 63.09795379638672, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15159.029006958008, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:45,063", - "created": 1614535185.06344, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 63.44008445739746, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15159.371137619019, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:45,063", - "created": 1614535185.063667, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 63.66705894470215, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15159.598112106323, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:45,063", - "created": 1614535185.063877, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 63.877105712890625, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15159.808158874512, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.064078, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 64.07809257507324, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.009145736694, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.06435, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 64.34988975524902, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.28094291687, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.064435, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 64.43500518798828, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.36605834961, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.064514, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 64.5139217376709, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.444974899292, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.064595, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 64.59498405456543, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.526037216187, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.064678, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 64.67795372009277, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.609006881714, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.06477, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 64.76998329162598, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.701036453247, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.06486, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 64.86010551452637, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.791158676147, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:45,064", - "created": 1614535185.064977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 64.97693061828613, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.907983779907, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.065065, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 65.06490707397461, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15160.995960235596, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.065157, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 65.15693664550781, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15161.087989807129, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.065239, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 65.23895263671875, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15161.17000579834, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.065321, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 65.32096862792969, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15161.25202178955, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.065399, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 65.3989315032959, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15161.329984664917, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.065477, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 65.47689437866211, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15161.407947540283, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.065735, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 65.7351016998291, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15161.66615486145, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.065839, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 65.83905220031738, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15161.770105361938, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:45,065", - "created": 1614535185.06597, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 65.96994400024414, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15161.900997161865, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066077, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 66.07699394226074, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.008047103882, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066175, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 66.17498397827148, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.106037139893, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 66.26510620117188, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.196159362793, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066365, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 66.36500358581543, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.296056747437, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066462, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 66.46203994750977, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.39309310913, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066563, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 66.56289100646973, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.49394416809, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066668, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 66.66803359985352, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.599086761475, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066758, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 66.7579174041748, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.688970565796, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.06686, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 66.85996055603027, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.791013717651, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:45,066", - "created": 1614535185.066959, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 66.95890426635742, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.889957427979, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067053, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 67.05307960510254, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15162.984132766724, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067142, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 67.14200973510742, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.073062896729, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067233, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 67.23308563232422, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.164138793945, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067321, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 67.3210620880127, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.252115249634, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067418, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 67.41809844970703, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.349151611328, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067526, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 67.52610206604004, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.457155227661, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067606, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 67.60597229003906, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.53702545166, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 67.6889419555664, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.619995117188, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 8.296966552734375e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:45,411", - "created": 1614535185.411831, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067859, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 67.85893440246582, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.789987564087, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:45,067", - "created": 1614535185.067967, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 67.96693801879883, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.89799118042, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,068", - "created": 1614535185.068039, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 68.0389404296875, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15163.969993591309, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:45,068", - "created": 1614535185.068156, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 68.15600395202637, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15164.087057113647, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:45,068", - "created": 1614535185.068408, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 68.40801239013672, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15164.339065551758, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:45,068", - "created": 1614535185.068502, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 68.50194931030273, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15164.433002471924, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:45,068", - "created": 1614535185.068587, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 68.58706474304199, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15164.518117904663, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:45,068", - "created": 1614535185.068793, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 68.79305839538574, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15164.724111557007, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:45,068", - "created": 1614535185.068989, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 68.98903846740723, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15164.920091629028, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069077, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 69.0770149230957, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.008068084717, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069151, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 69.15092468261719, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.081977844238, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069247, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 69.24700736999512, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.178060531616, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069315, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 69.31495666503906, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.24600982666, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069405, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 69.40507888793945, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.33613204956, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.06947, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 69.46992874145508, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.400981903076, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069556, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 69.55599784851074, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.487051010132, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069618, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 69.61798667907715, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.549039840698, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.06972, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 69.72002983093262, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.651082992554, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069788, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 69.78797912597656, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.719032287598, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069884, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 69.88406181335449, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.815114974976, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,069", - "created": 1614535185.069959, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 69.95892524719238, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.889978408813, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,070", - "created": 1614535185.07003, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 70.02997398376465, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15165.961027145386, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:45,070", - "created": 1614535185.070096, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 70.09601593017578, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15166.027069091797, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:45,070", - "created": 1614535185.070225, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 70.22500038146973, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15166.15605354309, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:45,070", - "created": 1614535185.070384, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 70.38402557373047, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15166.315078735352, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:45,070", - "created": 1614535185.070475, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 70.47510147094727, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15166.406154632568, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:45,070", - "created": 1614535185.070587, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 70.5869197845459, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15166.517972946167, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:45,071", - "created": 1614535185.071729, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 71.72894477844238, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15167.659997940063, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.072067, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 72.0670223236084, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15167.99807548523, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.072212, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 72.21198081970215, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.143033981323, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.072348, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 72.34811782836914, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.27917098999, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.072492, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 72.49188423156738, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.422937393188, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.07258, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 72.58009910583496, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.511152267456, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.072683, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 72.68309593200684, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.614149093628, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.072779, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 72.77894020080566, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.709993362427, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.072863, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 72.86310195922852, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.79415512085, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,072", - "created": 1614535185.072926, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 72.92604446411133, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.857097625732, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.073014, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 73.0140209197998, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15168.94507408142, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.073089, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 73.0888843536377, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15169.019937515259, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.073189, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 73.18902015686035, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15169.120073318481, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.073266, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 73.26602935791016, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15169.197082519531, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.073338, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 73.33803176879883, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15169.26908493042, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.0734, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 73.40002059936523, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15169.331073760986, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.073534, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 73.53401184082031, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15169.465065002441, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.073727, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 73.72689247131348, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15169.657945632935, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:45,073", - "created": 1614535185.073825, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 73.82488250732422, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15169.755935668945, - "thread": 139997210474240, - "threadName": "Thread-26" - } - ], - "msecs": 411.8309020996094, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15507.76195526123, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.33800601959228516 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:45,412", - "created": 1614535185.412811, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 158, - "message": "Registering a correct working Callback", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback__'", - "None", - "None" - ], - "asctime": "2021-02-28 18:59:45,412", - "created": 1614535185.412512, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback__' for SID=None and DID=None", - "module": "__init__", - "msecs": 412.51206398010254, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15508.443117141724, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 412.8110408782959, - "msg": "Registering a correct working Callback", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15508.742094039917, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002989768981933594 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:45,614", - "created": 1614535185.614693, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 161, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:45,413", - "created": 1614535185.413261, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 413.26093673706055, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15509.191989898682, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:45,436", - "created": 1614535185.436456, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 436.45596504211426, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15532.387018203735, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:45,437", - "created": 1614535185.437205, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 437.20507621765137, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15533.136129379272, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,437", - "created": 1614535185.437477, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 437.47711181640625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15533.408164978027, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:45,438", - "created": 1614535185.438038, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 438.0381107330322, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15533.969163894653, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,438", - "created": 1614535185.438575, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 438.57502937316895, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15534.50608253479, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,438", - "created": 1614535185.438834, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 438.83395195007324, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15534.765005111694, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,439", - "created": 1614535185.439364, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 439.363956451416, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15535.295009613037, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,439", - "created": 1614535185.439604, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 439.6040439605713, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15535.535097122192, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440194, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 440.19389152526855, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.12494468689, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440337, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 440.3369426727295, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.26799583435, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440445, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 440.4449462890625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.375999450684, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440518, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 440.5179023742676, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.448955535889, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440624, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 440.6239986419678, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.555051803589, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440709, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 440.70911407470703, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.640167236328, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440781, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 440.7811164855957, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.712169647217, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440844, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 440.8440589904785, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.7751121521, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:45,440", - "created": 1614535185.440979, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 440.97900390625, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15536.910057067871, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:45,441", - "created": 1614535185.441183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 441.18309020996094, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15537.114143371582, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "__callback__" - ], - "asctime": "2021-02-28 18:59:45,441", - "created": 1614535185.441292, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback__ to process received data", - "module": "__init__", - "msecs": 441.29204750061035, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15537.223100662231, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:45,441", - "created": 1614535185.44143, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 441.43009185791016, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15537.361145019531, - "thread": 139997696988928, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:45,475", - "created": 1614535185.475303, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 475.30293464660645, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15571.233987808228, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:45,475", - "created": 1614535185.4757, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 475.69990158081055, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15571.630954742432, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,475", - "created": 1614535185.475859, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 475.8589267730713, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15571.789979934692, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:45,475", - "created": 1614535185.47599, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 475.99005699157715, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15571.921110153198, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,476", - "created": 1614535185.476147, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 476.146936416626, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15572.077989578247, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,476", - "created": 1614535185.476268, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 476.26805305480957, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15572.19910621643, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,476", - "created": 1614535185.476425, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 476.4249324798584, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15572.35598564148, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,476", - "created": 1614535185.476545, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 476.5450954437256, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15572.476148605347, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,476", - "created": 1614535185.476684, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 476.6840934753418, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15572.615146636963, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,476", - "created": 1614535185.476791, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 476.7909049987793, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15572.7219581604, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,476", - "created": 1614535185.476937, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 476.93705558776855, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15572.86810874939, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,477", - "created": 1614535185.477045, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 477.04505920410156, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15572.976112365723, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-server:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,477", - "created": 1614535185.477235, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 477.2350788116455, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15573.166131973267, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-client:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,477", - "created": 1614535185.47737, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 477.370023727417, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15573.301076889038, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,477", - "created": 1614535185.477502, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 477.50210762023926, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15573.43316078186, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:45,477", - "created": 1614535185.477621, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 477.62107849121094, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15573.552131652832, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" - ], - "asctime": "2021-02-28 18:59:45,477", - "created": 1614535185.477921, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "stp", - "msecs": 477.9210090637207, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15573.852062225342, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:45,478", - "created": 1614535185.478449, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 478.44910621643066, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15574.380159378052, - "thread": 139997210474240, - "threadName": "Thread-26" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,478", - "created": 1614535185.478734, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 478.73401641845703, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15574.665069580078, - "thread": 139997210474240, - "threadName": "Thread-26" - } - ], - "msecs": 614.6929264068604, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15710.623979568481, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.13595890998840332 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,616", - "created": 1614535185.616605, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,615", - "created": 1614535185.615583, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 615.5829429626465, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15711.513996124268, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,616", - "created": 1614535185.616225, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 616.225004196167, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15712.156057357788, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 616.6050434112549, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15712.536096572876, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003800392150878906 - }, - { - "args": [ - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,618", - "created": 1614535185.618251, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,617", - "created": 1614535185.617552, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", - "module": "test", - "msecs": 617.5520420074463, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15713.483095169067, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:45,617", - "created": 1614535185.617924, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", - "module": "test", - "msecs": 617.9239749908447, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15713.855028152466, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 618.2510852813721, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15714.182138442993, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00032711029052734375 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.559128999710083, - "time_finished": "2021-02-28 18:59:45,618", - "time_start": "2021-02-28 18:59:45,059" - }, - "_r9srME0vEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:42,970", - "created": 1614535182.970015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 45, - "message": "_r9srME0vEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 970.0150489807129, - "msg": "_r9srME0vEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13065.946102142334, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:42,981", - "created": 1614535182.981178, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:42,971", - "created": 1614535182.97133, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 971.329927444458, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13067.26098060608, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:42,973", - "created": 1614535182.973007, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 973.0069637298584, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13068.93801689148, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:42,973", - "created": 1614535182.973431, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 973.4311103820801, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13069.362163543701, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,974", - "created": 1614535182.97447, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 974.4699001312256, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13070.400953292847, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:42,974", - "created": 1614535182.974887, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 974.8868942260742, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13070.817947387695, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:42,975", - "created": 1614535182.975271, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 975.2709865570068, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13071.202039718628, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:42,975", - "created": 1614535182.975522, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 975.5220413208008, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13071.453094482422, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:42,975", - "created": 1614535182.975741, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 975.740909576416, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13071.671962738037, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:42,976", - "created": 1614535182.976335, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 976.3350486755371, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13072.266101837158, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:42,976", - "created": 1614535182.976664, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 976.6640663146973, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13072.595119476318, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:42,976", - "created": 1614535182.976936, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 976.9361019134521, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13072.867155075073, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:42,977", - "created": 1614535182.977336, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 977.3359298706055, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13073.266983032227, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:42,977", - "created": 1614535182.977579, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 977.5791168212891, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13073.51016998291, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,977", - "created": 1614535182.977829, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 977.8289794921875, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13073.760032653809, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:42,978", - "created": 1614535182.978085, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 978.0850410461426, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13074.016094207764, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:42,978", - "created": 1614535182.97834, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 978.3399105072021, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13074.270963668823, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:42,978", - "created": 1614535182.97843, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 978.4300327301025, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13074.361085891724, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:42,978", - "created": 1614535182.978528, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 978.5280227661133, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13074.459075927734, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:42,978", - "created": 1614535182.97864, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 978.640079498291, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13074.571132659912, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979013, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 979.0129661560059, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13074.944019317627, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979108, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 979.1080951690674, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.039148330688, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979197, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 979.1970252990723, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.128078460693, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979283, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 979.2830944061279, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.214147567749, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979509, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 979.5091152191162, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.440168380737, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.97961, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 979.6099662780762, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.541019439697, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 979.7530174255371, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.684070587158, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979838, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 979.8378944396973, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.768947601318, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979908, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 979.9079895019531, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.839042663574, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:42,979", - "created": 1614535182.979975, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 979.9749851226807, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.906038284302, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980049, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 980.0488948822021, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13075.979948043823, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980131, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 980.1309108734131, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.061964035034, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980205, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 980.2050590515137, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.136112213135, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980279, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 980.2789688110352, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.210021972656, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980346, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 980.3459644317627, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.277017593384, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.98043, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 980.4298877716064, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.360940933228, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980511, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 980.510950088501, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.442003250122, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980582, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 980.5819988250732, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.513051986694, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980669, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 980.6690216064453, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.600074768066, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980762, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 980.7620048522949, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.693058013916, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980849, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 980.849027633667, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.780080795288, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:42,980", - "created": 1614535182.980931, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 980.9310436248779, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.862096786499, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:42,981", - "created": 1614535182.981009, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 981.0090065002441, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13076.940059661865, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,981", - "created": 1614535182.981087, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 981.0869693756104, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13077.018022537231, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 981.1780452728271, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13077.109098434448, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 9.107589721679688e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:43,325", - "created": 1614535183.325682, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:42,981", - "created": 1614535182.981361, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 981.360912322998, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13077.29196548462, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:42,981", - "created": 1614535182.981482, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 981.4820289611816, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13077.413082122803, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:42,981", - "created": 1614535182.981622, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 981.6219806671143, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13077.553033828735, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:42,981", - "created": 1614535182.981854, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 981.8539619445801, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13077.785015106201, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:42,982", - "created": 1614535182.982185, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 982.184886932373, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13078.115940093994, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:42,982", - "created": 1614535182.982297, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 982.2969436645508, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13078.227996826172, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:42,982", - "created": 1614535182.98241, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 982.4099540710449, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13078.341007232666, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:42,982", - "created": 1614535182.982681, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 982.6810359954834, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13078.612089157104, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:42,982", - "created": 1614535182.982923, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 982.9230308532715, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13078.854084014893, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983032, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 983.0319881439209, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13078.963041305542, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983123, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 983.1230640411377, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.054117202759, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983238, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 983.2379817962646, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.169034957886, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983354, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 983.3540916442871, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.285144805908, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983474, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 983.4740161895752, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.405069351196, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.98356, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 983.5600852966309, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.491138458252, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983668, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 983.6680889129639, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.599142074585, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983748, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 983.7479591369629, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.679012298584, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983881, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 983.8809967041016, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.812049865723, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,983", - "created": 1614535182.983948, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 983.9479923248291, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.87904548645, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,984", - "created": 1614535182.984051, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 984.050989151001, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13079.982042312622, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,984", - "created": 1614535182.984135, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 984.1349124908447, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13080.065965652466, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,984", - "created": 1614535182.98421, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 984.2100143432617, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13080.141067504883, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:42,984", - "created": 1614535182.984297, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 984.2970371246338, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13080.228090286255, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:42,984", - "created": 1614535182.984426, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 984.4260215759277, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13080.357074737549, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:42,984", - "created": 1614535182.984604, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 984.6038818359375, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13080.534934997559, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:42,984", - "created": 1614535182.984696, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 984.6959114074707, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13080.626964569092, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:42,984", - "created": 1614535182.984808, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 984.8079681396484, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13080.73902130127, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:42,992", - "created": 1614535182.992042, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 992.042064666748, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13087.97311782837, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:42,992", - "created": 1614535182.992318, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 992.3179149627686, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13088.24896812439, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,992", - "created": 1614535182.992425, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 992.4249649047852, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13088.356018066406, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:42,992", - "created": 1614535182.992514, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 992.51389503479, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13088.444948196411, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,992", - "created": 1614535182.992631, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 992.6309585571289, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13088.56201171875, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,992", - "created": 1614535182.992717, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 992.7170276641846, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13088.648080825806, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,992", - "created": 1614535182.992864, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 992.8638935089111, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13088.794946670532, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,992", - "created": 1614535182.992951, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 992.9509162902832, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13088.881969451904, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993053, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 993.0529594421387, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13088.98401260376, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993143, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 993.1430816650391, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13089.07413482666, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993259, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 993.2589530944824, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13089.190006256104, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993338, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 993.3381080627441, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13089.269161224365, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993468, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 993.4680461883545, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13089.399099349976, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993568, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 993.567943572998, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13089.49899673462, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993676, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 993.675947189331, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13089.607000350952, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993761, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 993.7610626220703, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13089.692115783691, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:42,993", - "created": 1614535182.993933, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 993.9329624176025, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13089.864015579224, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:42,994", - "created": 1614535182.994152, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 994.1520690917969, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13090.083122253418, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:42,994", - "created": 1614535182.994265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 994.265079498291, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13090.196132659912, - "thread": 139997738952448, - "threadName": "Thread-20" - } - ], - "msecs": 325.6819248199463, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13421.612977981567, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3314168453216553 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:43,326", - "created": 1614535183.326851, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "specific_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "Registering a correct working Callback", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback__'", - "10", - "0" - ], - "asctime": "2021-02-28 18:59:43,326", - "created": 1614535183.326562, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", - "module": "__init__", - "msecs": 326.56192779541016, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13422.492980957031, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 326.85089111328125, - "msg": "Registering a correct working Callback", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13422.781944274902, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00028896331787109375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:43,529", - "created": 1614535183.529316, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "specific_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 104, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:43,327", - "created": 1614535183.327537, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 327.53705978393555, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13423.468112945557, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:43,350", - "created": 1614535183.350658, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 350.6579399108887, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13446.58899307251, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:43,351", - "created": 1614535183.351213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 351.2129783630371, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13447.144031524658, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,351", - "created": 1614535183.351494, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 351.49407386779785, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13447.425127029419, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:43,351", - "created": 1614535183.35187, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 351.870059967041, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13447.801113128662, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,352", - "created": 1614535183.352106, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 352.10609436035156, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13448.037147521973, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,352", - "created": 1614535183.352293, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 352.2930145263672, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13448.224067687988, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,352", - "created": 1614535183.352534, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 352.53405570983887, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13448.46510887146, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,352", - "created": 1614535183.352728, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 352.72789001464844, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13448.65894317627, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,353", - "created": 1614535183.353234, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 353.23405265808105, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13449.165105819702, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,353", - "created": 1614535183.353511, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 353.51109504699707, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13449.442148208618, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,353", - "created": 1614535183.353861, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 353.86109352111816, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13449.79214668274, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,354", - "created": 1614535183.354101, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 354.10094261169434, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13450.031995773315, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,354", - "created": 1614535183.354422, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 354.42209243774414, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13450.353145599365, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,354", - "created": 1614535183.354673, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 354.672908782959, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13450.60396194458, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,354", - "created": 1614535183.354988, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 354.98809814453125, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13450.919151306152, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:43,355", - "created": 1614535183.355191, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 355.1909923553467, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13451.122045516968, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:43,355", - "created": 1614535183.355601, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 355.60107231140137, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13451.532125473022, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:43,356", - "created": 1614535183.356052, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 356.0519218444824, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13451.982975006104, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "__callback__" - ], - "asctime": "2021-02-28 18:59:43,356", - "created": 1614535183.356318, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback__ to process received data", - "module": "__init__", - "msecs": 356.31799697875977, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13452.24905014038, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:43,356", - "created": 1614535183.356684, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 356.68396949768066, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13452.615022659302, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:43,360", - "created": 1614535183.360592, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 360.5918884277344, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13456.522941589355, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:43,360", - "created": 1614535183.360794, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 360.7940673828125, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13456.725120544434, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,360", - "created": 1614535183.360894, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 360.89396476745605, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13456.825017929077, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:43,360", - "created": 1614535183.360979, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 360.9790802001953, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13456.910133361816, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.361077, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 361.07707023620605, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.008123397827, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.361156, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 361.1559867858887, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.08703994751, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.36128, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 361.2799644470215, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.211017608643, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.361355, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 361.3550662994385, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.28611946106, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.36145, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 361.4499568939209, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.381010055542, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.361541, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 361.5410327911377, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.472085952759, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.361641, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 361.64093017578125, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.571983337402, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.361735, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 361.73510551452637, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.666158676147, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-server:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.361852, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 361.85193061828613, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.782983779907, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-client:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,361", - "created": 1614535183.361938, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 361.9379997253418, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.869052886963, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,362", - "created": 1614535183.362019, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 362.0190620422363, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13457.950115203857, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:43,362", - "created": 1614535183.362092, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 362.0920181274414, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13458.023071289062, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" - ], - "asctime": "2021-02-28 18:59:43,362", - "created": 1614535183.362245, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "stp", - "msecs": 362.2450828552246, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13458.176136016846, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:43,362", - "created": 1614535183.362408, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 362.407922744751, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13458.338975906372, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:43,362", - "created": 1614535183.36252, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 362.5199794769287, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13458.45103263855, - "thread": 139997738952448, - "threadName": "Thread-20" - } - ], - "msecs": 529.3159484863281, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13625.24700164795, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.16679596900939941 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,530", - "created": 1614535183.530936, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,529", - "created": 1614535183.529971, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 529.9708843231201, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13625.901937484741, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,530", - "created": 1614535183.530571, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 530.5709838867188, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13626.50203704834, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 530.9360027313232, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13626.867055892944, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003650188446044922 - }, - { - "args": [ - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,532", - "created": 1614535183.532534, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,531", - "created": 1614535183.531401, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", - "module": "test", - "msecs": 531.4009189605713, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13627.331972122192, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,531", - "created": 1614535183.531658, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", - "module": "test", - "msecs": 531.6579341888428, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13627.588987350464, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 532.5338840484619, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13628.464937210083, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0008759498596191406 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:43,533", - "created": 1614535183.533248, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "specific_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 110, - "message": "Overwriting existing Callback using one with faulty (too many) return values", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback__'", - "10", - "0", - "'__callback_error__'" - ], - "asctime": "2021-02-28 18:59:43,532", - "created": 1614535183.533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "WARNING", - "levelno": 30, - "lineno": 168, - "message": "prot-server: Overwriting existing callback '__callback__' for service_id (10) and data_id (0) to '__callback_error__'!", - "module": "__init__", - "msecs": 532.9999923706055, - "msg": "%s Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13628.931045532227, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 533.2479476928711, - "msg": "Overwriting existing Callback using one with faulty (too many) return values", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13629.179000854492, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.000247955322265625 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:43,735", - "created": 1614535183.735402, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "specific_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 113, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:43,533", - "created": 1614535183.533877, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 533.876895904541, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13629.807949066162, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:43,558", - "created": 1614535183.558308, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 558.3078861236572, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13654.238939285278, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:43,558", - "created": 1614535183.55889, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 558.8901042938232, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13654.821157455444, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,559", - "created": 1614535183.559151, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 559.1509342193604, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13655.081987380981, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:43,559", - "created": 1614535183.559367, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 559.3669414520264, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13655.297994613647, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,559", - "created": 1614535183.559909, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 559.9091053009033, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13655.840158462524, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,560", - "created": 1614535183.56017, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 560.1699352264404, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13656.100988388062, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,560", - "created": 1614535183.560641, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 560.6410503387451, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13656.572103500366, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,560", - "created": 1614535183.560959, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 560.9591007232666, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13656.890153884888, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,561", - "created": 1614535183.561263, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 561.2630844116211, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13657.194137573242, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,561", - "created": 1614535183.5615, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 561.500072479248, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13657.43112564087, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,561", - "created": 1614535183.561797, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 561.7969036102295, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13657.72795677185, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,561", - "created": 1614535183.561996, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 561.9959831237793, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13657.9270362854, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,562", - "created": 1614535183.562326, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 562.3259544372559, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13658.257007598877, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,562", - "created": 1614535183.562569, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 562.5689029693604, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13658.499956130981, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,562", - "created": 1614535183.562754, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 562.7539157867432, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13658.684968948364, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:43,562", - "created": 1614535183.562926, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 562.9260540008545, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13658.857107162476, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:43,563", - "created": 1614535183.563294, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 563.2939338684082, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13659.22498703003, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:43,564", - "created": 1614535183.564189, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 564.1889572143555, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13660.120010375977, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "__callback_error__" - ], - "asctime": "2021-02-28 18:59:43,564", - "created": 1614535183.564533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback_error__ to process received data", - "module": "__init__", - "msecs": 564.532995223999, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13660.46404838562, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [], - "asctime": "2021-02-28 18:59:43,564", - "created": 1614535183.564837, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 494, - "message": "prot-server: Exception raised. Check callback __callback_error__: \"too many values to unpack\" and it's return values for service: read data request, data_id: 0", - "module": "__init__", - "msecs": 564.8369789123535, - "msg": "prot-server: Exception raised. Check callback __callback_error__: \"too many values to unpack\" and it's return values for service: read data request, data_id: 0", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13660.768032073975, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: callback error", - "None" - ], - "asctime": "2021-02-28 18:59:43,565", - "created": 1614535183.565155, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: callback error, data: \"None\"", - "module": "__init__", - "msecs": 565.155029296875, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13661.086082458496, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" - ], - "asctime": "2021-02-28 18:59:43,566", - "created": 1614535183.566727, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", - "module": "__init__", - "msecs": 566.7269229888916, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13662.657976150513, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" - ], - "asctime": "2021-02-28 18:59:43,566", - "created": 1614535183.566952, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", - "module": "__init__", - "msecs": 566.9519901275635, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13662.883043289185, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567052, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 567.051887512207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13662.982940673828, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567139, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 567.1389102935791, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.0699634552, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567245, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 567.2450065612793, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.1760597229, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567326, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 567.3260688781738, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.257122039795, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567444, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 567.4440860748291, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.37513923645, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567522, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 567.5220489501953, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.453102111816, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567632, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 567.6319599151611, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.563013076782, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567709, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 567.7089691162109, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.640022277832, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567818, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 567.8179264068604, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.748979568481, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,567", - "created": 1614535183.567897, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 567.8970813751221, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.828134536743, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-server:", - "(7): 7d 3f 8f 7d 86 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,568", - "created": 1614535183.568016, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (7): 7d 3f 8f 7d 86 3a 3e", - "module": "__init__", - "msecs": 568.0160522460938, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13663.947105407715, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-client:", - "(7): 7d 3f 8f 7d 86 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,568", - "created": 1614535183.568112, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (7): 7d 3f 8f 7d 86 3a 3e", - "module": "__init__", - "msecs": 568.1118965148926, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13664.042949676514, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,568", - "created": 1614535183.568201, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 568.2010650634766, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13664.132118225098, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:43,568", - "created": 1614535183.568278, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 568.2780742645264, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13664.209127426147, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - "(63): 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 30 7d 3f 8f 7d 86" - ], - "asctime": "2021-02-28 18:59:43,568", - "created": 1614535183.568441, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (63): 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 30 7d 3f 8f 7d 86", - "module": "stp", - "msecs": 568.4409141540527, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13664.371967315674, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: callback error", - "None" - ], - "asctime": "2021-02-28 18:59:43,568", - "created": 1614535183.568612, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: callback error, data: \"None\"", - "module": "__init__", - "msecs": 568.6120986938477, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13664.543151855469, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:43,568", - "created": 1614535183.568742, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 568.742036819458, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13664.67308998108, - "thread": 139997738952448, - "threadName": "Thread-20" - } - ], - "msecs": 735.4021072387695, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13831.33316040039, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.16666007041931152 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,736", - "created": 1614535183.736559, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,736", - "created": 1614535183.736037, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 736.037015914917, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13831.968069076538, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,736", - "created": 1614535183.736312, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 736.3119125366211, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13832.242965698242, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 736.5589141845703, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13832.489967346191, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024700164794921875 - }, - { - "args": [ - "{u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,737", - "created": 1614535183.737602, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,737", - "created": 1614535183.737101, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 2, u'service_id': 11, u'data': None, u'data_id': 0} ()", - "module": "test", - "msecs": 737.1010780334473, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13833.032131195068, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 2, 'service_id': 11, 'data': None, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,737", - "created": 1614535183.737353, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 2, 'service_id': 11, 'data': None, 'data_id': 0} ()", - "module": "test", - "msecs": 737.3530864715576, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13833.284139633179, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 737.6019954681396, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13833.53304862976, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00024890899658203125 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:43,738", - "created": 1614535183.738596, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "specific_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 119, - "message": "Removing the registered Callback", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback_error__'", - "10", - "0" - ], - "asctime": "2021-02-28 18:59:43,738", - "created": 1614535183.738314, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "WARNING", - "levelno": 30, - "lineno": 164, - "message": "prot-server: Deleting existing callback '__callback_error__' for service_id (10) and data_id (0)!", - "module": "__init__", - "msecs": 738.3139133453369, - "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13834.244966506958, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 738.5959625244141, - "msg": "Removing the registered Callback", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13834.527015686035, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00028204917907714844 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:43,940", - "created": 1614535183.940461, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "specific_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 122, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:43,739", - "created": 1614535183.739059, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 739.0589714050293, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13834.99002456665, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:43,766", - "created": 1614535183.766558, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 766.5579319000244, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13862.488985061646, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:43,767", - "created": 1614535183.767083, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 767.082929611206, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13863.013982772827, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,767", - "created": 1614535183.767305, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 767.3048973083496, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13863.23595046997, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:43,767", - "created": 1614535183.767489, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 767.488956451416, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13863.420009613037, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,767", - "created": 1614535183.767753, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 767.7528858184814, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13863.683938980103, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,768", - "created": 1614535183.768033, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 768.0330276489258, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13863.964080810547, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,768", - "created": 1614535183.768386, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 768.3858871459961, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13864.316940307617, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,768", - "created": 1614535183.768565, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 768.5649394989014, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13864.495992660522, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,768", - "created": 1614535183.768787, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 768.7869071960449, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13864.717960357666, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,768", - "created": 1614535183.768957, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 768.9568996429443, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13864.887952804565, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,769", - "created": 1614535183.769166, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 769.1659927368164, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13865.097045898438, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,769", - "created": 1614535183.769323, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 769.3231105804443, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13865.254163742065, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,769", - "created": 1614535183.769598, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 769.5980072021484, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13865.52906036377, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,770", - "created": 1614535183.770044, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 770.0440883636475, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13865.975141525269, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,770", - "created": 1614535183.770251, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 770.2510356903076, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13866.182088851929, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:43,770", - "created": 1614535183.77041, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 770.4100608825684, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13866.34111404419, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:43,770", - "created": 1614535183.770742, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 770.7419395446777, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13866.672992706299, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:43,771", - "created": 1614535183.77118, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 771.1799144744873, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13867.110967636108, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:43,771", - "created": 1614535183.77143, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 486, - "message": "prot-server: Incomming message with no registered callback. Sending negative response.", - "module": "__init__", - "msecs": 771.4300155639648, - "msg": "%s Incomming message with no registered callback. Sending negative response.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13867.361068725586, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: no callback for service, data buffered", - "None" - ], - "asctime": "2021-02-28 18:59:43,771", - "created": 1614535183.771767, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", - "module": "__init__", - "msecs": 771.7669010162354, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13867.697954177856, - "thread": 139997747345152, - "threadName": "Thread-19" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" - ], - "asctime": "2021-02-28 18:59:43,772", - "created": 1614535183.772894, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", - "module": "__init__", - "msecs": 772.8939056396484, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13868.82495880127, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30" - ], - "asctime": "2021-02-28 18:59:43,773", - "created": 1614535183.773364, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30", - "module": "__init__", - "msecs": 773.3640670776367, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13869.295120239258, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,773", - "created": 1614535183.773598, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 773.5979557037354, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13869.529008865356, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:43,773", - "created": 1614535183.773864, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 773.8640308380127, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13869.795083999634, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,774", - "created": 1614535183.77413, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 774.13010597229, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13870.061159133911, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,774", - "created": 1614535183.774363, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 774.3630409240723, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13870.294094085693, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,774", - "created": 1614535183.774643, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 774.6429443359375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13870.573997497559, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,774", - "created": 1614535183.774841, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 774.8410701751709, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13870.772123336792, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,775", - "created": 1614535183.775183, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 775.1829624176025, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13871.114015579224, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,775", - "created": 1614535183.775381, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 775.3810882568359, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13871.312141418457, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,775", - "created": 1614535183.775692, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 775.6919860839844, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13871.623039245605, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:43,775", - "created": 1614535183.77589, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 775.8901119232178, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13871.821165084839, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-server:", - "(7): 7d 79 5d 48 e2 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,776", - "created": 1614535183.776221, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (7): 7d 79 5d 48 e2 3a 3e", - "module": "__init__", - "msecs": 776.2210369110107, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13872.152090072632, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "comm-client:", - "(7): 7d 79 5d 48 e2 3a 3e" - ], - "asctime": "2021-02-28 18:59:43,776", - "created": 1614535183.776506, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (7): 7d 79 5d 48 e2 3a 3e", - "module": "__init__", - "msecs": 776.5059471130371, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13872.437000274658, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:43,776", - "created": 1614535183.776744, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 776.7438888549805, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13872.674942016602, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:43,776", - "created": 1614535183.776934, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 776.9339084625244, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13872.864961624146, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - "(63): 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 30 7d 79 5d 48 e2" - ], - "asctime": "2021-02-28 18:59:43,777", - "created": 1614535183.777341, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (63): 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 30 7d 79 5d 48 e2", - "module": "stp", - "msecs": 777.3408889770508, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13873.271942138672, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: no callback for service, data buffered", - "None" - ], - "asctime": "2021-02-28 18:59:43,777", - "created": 1614535183.77752, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", - "module": "__init__", - "msecs": 777.519941329956, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13873.450994491577, - "thread": 139997738952448, - "threadName": "Thread-20" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:43,777", - "created": 1614535183.777634, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 777.6339054107666, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 13873.564958572388, - "thread": 139997738952448, - "threadName": "Thread-20" - } - ], - "msecs": 940.4609203338623, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14036.391973495483, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.1628270149230957 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:43,941", - "created": 1614535183.941807, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "None", - "" - ], - "asctime": "2021-02-28 18:59:43,941", - "created": 1614535183.941206, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): None ()", - "module": "test", - "msecs": 941.2059783935547, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14037.137031555176, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "None", - "" - ], - "asctime": "2021-02-28 18:59:43,941", - "created": 1614535183.941474, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = None ()", - "module": "test", - "msecs": 941.4739608764648, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14037.405014038086, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 941.8070316314697, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14037.73808479309, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003330707550048828 - }, - { - "args": [ - "{u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,942", - "created": 1614535183.942968, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,942", - "created": 1614535183.942159, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 1, u'service_id': 11, u'data': None, u'data_id': 0} ()", - "module": "test", - "msecs": 942.1589374542236, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14038.089990615845, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 1, 'service_id': 11, 'data': None, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:43,942", - "created": 1614535183.942673, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 1, 'service_id': 11, 'data': None, 'data_id': 0} ()", - "module": "test", - "msecs": 942.6729679107666, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14038.604021072388, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 942.9678916931152, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 14038.898944854736, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0002949237823486328 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.9729528427124023, - "time_finished": "2021-02-28 18:59:43,942", - "time_start": "2021-02-28 18:59:42,970" - }, - "_tb5akE4LEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 18:59:45,619", - "created": 1614535185.619248, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 49, - "message": "_tb5akE4LEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 619.2479133605957, - "msg": "_tb5akE4LEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15715.178966522217, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:45,627", - "created": 1614535185.62703, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:45,620", - "created": 1614535185.620279, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 620.27907371521, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15716.210126876831, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:45,621", - "created": 1614535185.621968, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 621.9680309295654, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15717.899084091187, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:45,622", - "created": 1614535185.622243, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 622.2429275512695, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15718.17398071289, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:45,622", - "created": 1614535185.622772, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 622.7719783782959, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15718.703031539917, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:45,623", - "created": 1614535185.623076, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 623.0759620666504, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15719.007015228271, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:45,623", - "created": 1614535185.62331, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 623.3100891113281, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15719.24114227295, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:45,623", - "created": 1614535185.62369, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 623.6898899078369, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15719.620943069458, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:45,623", - "created": 1614535185.623807, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 623.8069534301758, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15719.738006591797, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:45,623", - "created": 1614535185.623885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 623.884916305542, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15719.815969467163, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:45,623", - "created": 1614535185.62399, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 623.9900588989258, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15719.921112060547, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624086, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 624.0859031677246, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.016956329346, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.62418, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 624.1800785064697, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.11113166809, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624271, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 624.2709159851074, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.201969146729, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624353, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 624.3529319763184, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.28398513794, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624448, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 624.4480609893799, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.379114151001, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624552, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 624.5520114898682, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.48306465149, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624625, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 624.6249675750732, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.556020736694, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624699, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 624.6991157531738, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.630168914795, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624776, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 624.7758865356445, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.706939697266, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624854, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 624.8540878295898, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.785140991211, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:45,624", - "created": 1614535185.624923, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 624.9229907989502, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.854043960571, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625001, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 625.0009536743164, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15720.932006835938, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625084, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 625.0839233398438, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.014976501465, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625308, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 625.3080368041992, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.23908996582, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625444, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 625.4439353942871, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.374988555908, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625571, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 625.5710124969482, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.50206565857, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625671, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 625.6709098815918, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.601963043213, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625758, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 625.7579326629639, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.688985824585, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625847, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 625.8471012115479, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.778154373169, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:45,625", - "created": 1614535185.625937, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 625.9369850158691, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.86803817749, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626046, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 626.0459423065186, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15721.97699546814, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626152, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 626.1520385742188, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.08309173584, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626228, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 626.2280941009521, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.159147262573, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626296, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 626.2960433959961, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.227096557617, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626381, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 626.3809204101562, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.311973571777, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626466, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 626.4660358428955, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.397089004517, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626536, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 626.5358924865723, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.466945648193, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626607, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 626.6069412231445, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.537994384766, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626685, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 626.6849040985107, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.615957260132, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626756, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 626.755952835083, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.687005996704, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626823, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 626.8229484558105, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.754001617432, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626889, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 626.8889904022217, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.820043563843, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,626", - "created": 1614535185.626955, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 626.9550323486328, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.886085510254, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 627.0298957824707, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15722.960948944092, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 7.486343383789062e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:45,971", - "created": 1614535185.971101, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:45,627", - "created": 1614535185.627174, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 627.173900604248, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15723.10495376587, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:45,627", - "created": 1614535185.627263, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 627.263069152832, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15723.194122314453, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:45,627", - "created": 1614535185.62733, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 627.3300647735596, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15723.26111793518, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:45,627", - "created": 1614535185.627446, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 627.4459362030029, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15723.376989364624, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:45,627", - "created": 1614535185.627662, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 627.661943435669, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15723.59299659729, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:45,627", - "created": 1614535185.627741, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 627.7410984039307, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15723.672151565552, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:45,627", - "created": 1614535185.627811, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 627.8109550476074, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15723.742008209229, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:45,630", - "created": 1614535185.6303, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 630.3000450134277, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15726.231098175049, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:45,630", - "created": 1614535185.630519, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 630.518913269043, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15726.449966430664, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,630", - "created": 1614535185.630627, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 630.626916885376, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15726.557970046997, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:45,630", - "created": 1614535185.630737, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 630.7370662689209, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15726.668119430542, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,630", - "created": 1614535185.630864, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 630.8639049530029, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15726.794958114624, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,630", - "created": 1614535185.630968, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 630.9680938720703, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15726.899147033691, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,631", - "created": 1614535185.631143, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 631.1430931091309, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15727.074146270752, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,631", - "created": 1614535185.631272, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 631.2720775604248, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15727.203130722046, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,631", - "created": 1614535185.631437, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 631.4370632171631, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15727.368116378784, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,631", - "created": 1614535185.631665, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 631.6649913787842, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15727.596044540405, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,631", - "created": 1614535185.631862, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 631.8619251251221, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15727.792978286743, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,632", - "created": 1614535185.632387, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 632.3869228363037, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15728.317975997925, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-client:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,632", - "created": 1614535185.632528, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 632.5280666351318, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15728.459119796753, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(6): 28 3b d3 54 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,632", - "created": 1614535185.632628, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 28 3b d3 54 3a 3e", - "module": "__init__", - "msecs": 632.6279640197754, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15728.559017181396, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,632", - "created": 1614535185.63271, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 632.7099800109863, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15728.641033172607, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:45,632", - "created": 1614535185.632779, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 632.7788829803467, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15728.709936141968, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(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 38 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 28 3b d3 54" - ], - "asctime": "2021-02-28 18:59:45,632", - "created": 1614535185.632914, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 28 3b d3 54", - "module": "stp", - "msecs": 632.9140663146973, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15728.845119476318, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:45,633", - "created": 1614535185.633105, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 633.1050395965576, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15729.036092758179, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:45,633", - "created": 1614535185.633218, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 633.2180500030518, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15729.149103164673, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:45,633", - "created": 1614535185.633391, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 633.3909034729004, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15729.321956634521, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:45,638", - "created": 1614535185.638434, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 638.4339332580566, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15734.364986419678, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d" - ], - "asctime": "2021-02-28 18:59:45,638", - "created": 1614535185.63873, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d", - "module": "__init__", - "msecs": 638.7300491333008, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15734.661102294922, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,638", - "created": 1614535185.638841, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 638.840913772583, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15734.771966934204, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:45,638", - "created": 1614535185.638938, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 638.9379501342773, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15734.869003295898, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639058, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 639.0581130981445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15734.989166259766, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.63918, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 639.1799449920654, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.110998153687, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639296, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 639.2960548400879, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.227108001709, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639378, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 639.3780708312988, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.30912399292, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639488, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 639.4879817962646, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.419034957886, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639573, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 639.5730972290039, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.504150390625, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639679, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 639.678955078125, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.610008239746, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639755, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 639.7550106048584, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.68606376648, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-server:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639895, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 639.894962310791, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.826015472412, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(6): 14 5b 30 5c 3a 3e" - ], - "asctime": "2021-02-28 18:59:45,639", - "created": 1614535185.639998, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 14 5b 30 5c 3a 3e", - "module": "__init__", - "msecs": 639.9979591369629, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15735.929012298584, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,640", - "created": 1614535185.64009, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 640.0899887084961, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15736.021041870117, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:45,640", - "created": 1614535185.640172, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 640.172004699707, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15736.103057861328, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(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 39 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 14 5b 30 5c" - ], - "asctime": "2021-02-28 18:59:45,640", - "created": 1614535185.640333, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 14 5b 30 5c", - "module": "stp", - "msecs": 640.3329372406006, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15736.263990402222, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:45,640", - "created": 1614535185.640544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 640.5439376831055, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15736.474990844727, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:45,640", - "created": 1614535185.640654, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 640.6540870666504, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 15736.585140228271, - "thread": 139997193688832, - "threadName": "Thread-28" - } - ], - "msecs": 971.1010456085205, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16067.032098770142, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.3304469585418701 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:45,972", - "created": 1614535185.972674, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "choice_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 175, - "message": "Registering all kind of Callbacks", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback3__'", - "None", - "None" - ], - "asctime": "2021-02-28 18:59:45,971", - "created": 1614535185.971755, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback3__' for SID=None and DID=None", - "module": "__init__", - "msecs": 971.7550277709961, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16067.686080932617, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__callback2__'", - "None", - "0" - ], - "asctime": "2021-02-28 18:59:45,972", - "created": 1614535185.972031, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback2__' for SID=None and DID=0", - "module": "__init__", - "msecs": 972.0311164855957, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16067.962169647217, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__callback1__'", - "10", - "None" - ], - "asctime": "2021-02-28 18:59:45,972", - "created": 1614535185.972286, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback1__' for SID=10 and DID=None", - "module": "__init__", - "msecs": 972.2859859466553, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16068.217039108276, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__callback__'", - "10", - "0" - ], - "asctime": "2021-02-28 18:59:45,972", - "created": 1614535185.972507, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", - "module": "__init__", - "msecs": 972.5069999694824, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16068.438053131104, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 972.6738929748535, - "msg": "Registering all kind of Callbacks", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16068.604946136475, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00016689300537109375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:46,174", - "created": 1614535186.174117, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "choice_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 179, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:45,973", - "created": 1614535185.973056, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 973.0560779571533, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16068.987131118774, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:45,998", - "created": 1614535185.998601, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 998.600959777832, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16094.532012939453, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:45,999", - "created": 1614535185.999323, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 999.3228912353516, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16095.253944396973, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:45,999", - "created": 1614535185.999574, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 999.5739459991455, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16095.504999160767, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:45,999", - "created": 1614535185.999785, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 999.7849464416504, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16095.715999603271, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,000", - "created": 1614535186.000052, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 0.051975250244140625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16095.983028411865, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,000", - "created": 1614535186.000473, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 0.4730224609375, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16096.404075622559, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,001", - "created": 1614535186.001012, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 1.0120868682861328, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16096.943140029907, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,001", - "created": 1614535186.00131, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 1.310110092163086, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16097.241163253784, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,001", - "created": 1614535186.00156, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 1.5599727630615234, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16097.491025924683, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,001", - "created": 1614535186.001794, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 1.7940998077392578, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16097.72515296936, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,002", - "created": 1614535186.002022, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 2.0220279693603516, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16097.953081130981, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,002", - "created": 1614535186.002237, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 2.237081527709961, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16098.168134689331, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,002", - "created": 1614535186.002717, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 2.7170181274414062, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16098.648071289062, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,003", - "created": 1614535186.003013, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 3.0128955841064453, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16098.943948745728, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,003", - "created": 1614535186.003252, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 3.2520294189453125, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16099.183082580566, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,003", - "created": 1614535186.003435, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 3.434896469116211, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16099.365949630737, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:46,003", - "created": 1614535186.003764, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 3.763914108276367, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16099.694967269897, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:46,004", - "created": 1614535186.004184, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 4.18400764465332, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16100.115060806274, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "__callback__" - ], - "asctime": "2021-02-28 18:59:46,004", - "created": 1614535186.004409, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback__ to process received data", - "module": "__init__", - "msecs": 4.409074783325195, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16100.340127944946, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:46,004", - "created": 1614535186.004678, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 4.678010940551758, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16100.609064102173, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:46,006", - "created": 1614535186.006174, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 6.1740875244140625, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16102.105140686035, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60" - ], - "asctime": "2021-02-28 18:59:46,006", - "created": 1614535186.006746, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 60", - "module": "__init__", - "msecs": 6.746053695678711, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16102.6771068573, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,007", - "created": 1614535186.00711, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 7.110118865966797, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16103.041172027588, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,007", - "created": 1614535186.007532, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 7.531881332397461, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16103.462934494019, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,007", - "created": 1614535186.007994, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 7.993936538696289, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16103.924989700317, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,008", - "created": 1614535186.008373, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 8.373022079467773, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16104.304075241089, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,008", - "created": 1614535186.008876, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 8.87608528137207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16104.807138442993, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,009", - "created": 1614535186.009323, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 9.322881698608398, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16105.25393486023, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,009", - "created": 1614535186.009747, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 9.747028350830078, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16105.678081512451, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,010", - "created": 1614535186.01004, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 10.040044784545898, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16105.971097946167, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,010", - "created": 1614535186.010411, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 10.41102409362793, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16106.342077255249, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,010", - "created": 1614535186.010725, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 10.725021362304688, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16106.656074523926, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-server:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,011", - "created": 1614535186.011156, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 11.156082153320312, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16107.087135314941, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(5): 02 24 68 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,011", - "created": 1614535186.011549, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): 02 24 68 3a 3e", - "module": "__init__", - "msecs": 11.548995971679688, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16107.4800491333, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,011", - "created": 1614535186.011906, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 11.905908584594727, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16107.836961746216, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,012", - "created": 1614535186.012125, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 12.125015258789062, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16108.05606842041, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68" - ], - "asctime": "2021-02-28 18:59:46,012", - "created": 1614535186.012699, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 33 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 60 02 24 68", - "module": "stp", - "msecs": 12.698888778686523, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16108.629941940308, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 18:59:46,013", - "created": 1614535186.013154, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 13.154029846191406, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16109.085083007812, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:46,013", - "created": 1614535186.013451, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 13.451099395751953, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16109.382152557373, - "thread": 139997193688832, - "threadName": "Thread-28" - } - ], - "msecs": 174.1170883178711, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16270.048141479492, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.16066598892211914 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,175", - "created": 1614535186.175441, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,174", - "created": 1614535186.17473, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 174.7300624847412, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16270.661115646362, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,175", - "created": 1614535186.175052, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 175.05192756652832, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16270.98298072815, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 175.44102668762207, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16271.372079849243, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00038909912109375 - }, - { - "args": [ - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,176", - "created": 1614535186.176137, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,175", - "created": 1614535186.17577, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 33, u'data_id': 0} ()", - "module": "test", - "msecs": 175.77004432678223, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16271.701097488403, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,175", - "created": 1614535186.175958, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 33, 'data_id': 0} ()", - "module": "test", - "msecs": 175.95791816711426, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16271.888971328735, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 176.13697052001953, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16272.06802368164, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00017905235290527344 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:46,176", - "created": 1614535186.176647, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "choice_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 185, - "message": "Removing Callback for a specific Data- and Service-ID", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback__'", - "10", - "0" - ], - "asctime": "2021-02-28 18:59:46,176", - "created": 1614535186.176465, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "WARNING", - "levelno": 30, - "lineno": 164, - "message": "prot-server: Deleting existing callback '__callback__' for service_id (10) and data_id (0)!", - "module": "__init__", - "msecs": 176.46503448486328, - "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16272.396087646484, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 176.64694786071777, - "msg": "Removing Callback for a specific Data- and Service-ID", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16272.578001022339, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0001819133758544922 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:46,378", - "created": 1614535186.37828, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "choice_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 188, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:46,177", - "created": 1614535186.177011, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 177.01101303100586, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16272.942066192627, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:46,206", - "created": 1614535186.206325, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 206.32505416870117, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16302.256107330322, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:46,206", - "created": 1614535186.206967, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 206.96711540222168, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16302.898168563843, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,207", - "created": 1614535186.207369, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 207.3690891265869, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16303.300142288208, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,207", - "created": 1614535186.207626, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 207.6261043548584, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16303.55715751648, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,207", - "created": 1614535186.207964, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 207.9639434814453, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16303.894996643066, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,208", - "created": 1614535186.208217, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 208.21690559387207, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16304.147958755493, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,208", - "created": 1614535186.208554, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 208.55402946472168, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16304.485082626343, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,208", - "created": 1614535186.208783, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 208.78291130065918, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16304.71396446228, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,209", - "created": 1614535186.209074, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 209.0740203857422, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16305.005073547363, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,209", - "created": 1614535186.209309, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 209.30910110473633, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16305.240154266357, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,209", - "created": 1614535186.20962, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 209.61999893188477, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16305.551052093506, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,209", - "created": 1614535186.209866, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 209.86604690551758, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16305.797100067139, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,210", - "created": 1614535186.210211, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 210.21103858947754, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16306.142091751099, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,210", - "created": 1614535186.210497, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 210.4969024658203, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16306.427955627441, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,210", - "created": 1614535186.210736, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 210.73603630065918, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16306.66708946228, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,210", - "created": 1614535186.210931, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 210.93106269836426, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16306.862115859985, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:46,211", - "created": 1614535186.21133, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 211.32993698120117, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16307.260990142822, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:46,211", - "created": 1614535186.211791, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 211.7910385131836, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16307.722091674805, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "__callback1__" - ], - "asctime": "2021-02-28 18:59:46,212", - "created": 1614535186.212053, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback1__ to process received data", - "module": "__init__", - "msecs": 212.0530605316162, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16307.984113693237, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: operation not permitted", - "34" - ], - "asctime": "2021-02-28 18:59:46,212", - "created": 1614535186.212359, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", - "module": "__init__", - "msecs": 212.35895156860352, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16308.290004730225, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46" - ], - "asctime": "2021-02-28 18:59:46,214", - "created": 1614535186.214535, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46", - "module": "__init__", - "msecs": 214.53499794006348, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16310.466051101685, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46" - ], - "asctime": "2021-02-28 18:59:46,215", - "created": 1614535186.215024, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 46", - "module": "__init__", - "msecs": 215.02399444580078, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16310.955047607422, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,215", - "created": 1614535186.215241, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 215.2409553527832, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16311.172008514404, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,215", - "created": 1614535186.215422, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 215.4219150543213, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16311.352968215942, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,215", - "created": 1614535186.215633, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 215.63291549682617, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16311.563968658447, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,215", - "created": 1614535186.215809, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 215.80910682678223, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16311.740159988403, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,216", - "created": 1614535186.216173, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 216.1729335784912, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16312.103986740112, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,216", - "created": 1614535186.216388, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 216.38798713684082, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16312.319040298462, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,216", - "created": 1614535186.216684, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 216.68410301208496, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16312.615156173706, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,216", - "created": 1614535186.216913, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 216.91298484802246, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16312.844038009644, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,217", - "created": 1614535186.217205, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 217.20504760742188, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16313.136100769043, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,217", - "created": 1614535186.217418, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 217.41795539855957, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16313.34900856018, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-server:", - "(5): 3f 83 36 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,217", - "created": 1614535186.217777, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): 3f 83 36 3a 3e", - "module": "__init__", - "msecs": 217.77701377868652, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16313.708066940308, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(5): 3f 83 36 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,218", - "created": 1614535186.218235, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): 3f 83 36 3a 3e", - "module": "__init__", - "msecs": 218.23501586914062, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16314.166069030762, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,218", - "created": 1614535186.218606, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 218.60599517822266, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16314.537048339844, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,219", - "created": 1614535186.219395, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 219.39492225646973, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16315.32597541809, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(61): 7b 22 73 74 61 74 75 73 22 3a 20 36 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 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36" - ], - "asctime": "2021-02-28 18:59:46,219", - "created": 1614535186.219573, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 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 33 34 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 46 3f 83 36", - "module": "stp", - "msecs": 219.5730209350586, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16315.50407409668, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: operation not permitted", - "34" - ], - "asctime": "2021-02-28 18:59:46,219", - "created": 1614535186.219734, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", - "module": "__init__", - "msecs": 219.73395347595215, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16315.665006637573, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:46,219", - "created": 1614535186.219837, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 219.83695030212402, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16315.768003463745, - "thread": 139997193688832, - "threadName": "Thread-28" - } - ], - "msecs": 378.2799243927002, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16474.21097755432, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.15844297409057617 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,379", - "created": 1614535186.379373, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,378", - "created": 1614535186.378896, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 378.89599800109863, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16474.82705116272, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,379", - "created": 1614535186.379142, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 379.14204597473145, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16475.073099136353, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 379.37307357788086, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16475.304126739502, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00023102760314941406 - }, - { - "args": [ - "{u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,380", - "created": 1614535186.380072, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,379", - "created": 1614535186.379693, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 6, u'service_id': 11, u'data': 34, u'data_id': 0} ()", - "module": "test", - "msecs": 379.69303131103516, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16475.624084472656, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 6, 'service_id': 11, 'data': 34, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,379", - "created": 1614535186.37989, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 6, 'service_id': 11, 'data': 34, 'data_id': 0} ()", - "module": "test", - "msecs": 379.88996505737305, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16475.821018218994, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 380.07211685180664, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16476.003170013428, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00018215179443359375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:46,380", - "created": 1614535186.380573, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "choice_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 194, - "message": "Removing Callback for a specific Service-ID and all Data-IDs", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback1__'", - "10", - "None" - ], - "asctime": "2021-02-28 18:59:46,380", - "created": 1614535186.380391, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "WARNING", - "levelno": 30, - "lineno": 164, - "message": "prot-server: Deleting existing callback '__callback1__' for service_id (10) and data_id (None)!", - "module": "__init__", - "msecs": 380.39088249206543, - "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16476.321935653687, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 380.573034286499, - "msg": "Removing Callback for a specific Service-ID and all Data-IDs", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16476.50408744812, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00018215179443359375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:46,582", - "created": 1614535186.582131, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "choice_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 197, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:46,380", - "created": 1614535186.380937, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 380.9370994567871, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16476.86815261841, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:46,414", - "created": 1614535186.414029, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 414.0288829803467, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16509.959936141968, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:46,414", - "created": 1614535186.414622, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 414.62206840515137, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16510.553121566772, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,414", - "created": 1614535186.414877, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 414.87693786621094, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16510.807991027832, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,415", - "created": 1614535186.415132, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 415.1320457458496, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16511.06309890747, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,415", - "created": 1614535186.415487, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.48705101013184, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16511.418104171753, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,415", - "created": 1614535186.415694, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 415.693998336792, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16511.625051498413, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,415", - "created": 1614535186.415979, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.97890853881836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16511.90996170044, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,416", - "created": 1614535186.416199, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 416.1989688873291, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16512.13002204895, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,416", - "created": 1614535186.416472, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 416.4719581604004, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16512.40301132202, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,416", - "created": 1614535186.416662, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 416.66197776794434, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16512.593030929565, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,416", - "created": 1614535186.416921, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 416.92090034484863, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16512.85195350647, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,417", - "created": 1614535186.41711, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 417.1099662780762, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16513.041019439697, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,417", - "created": 1614535186.417469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 417.4690246582031, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16513.400077819824, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,417", - "created": 1614535186.41776, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 417.75989532470703, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16513.690948486328, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,418", - "created": 1614535186.418022, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 418.02191734313965, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16513.95297050476, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,418", - "created": 1614535186.418326, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 418.32590103149414, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16514.256954193115, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:46,418", - "created": 1614535186.418818, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 418.81799697875977, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16514.74905014038, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:46,419", - "created": 1614535186.41931, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 419.3100929260254, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16515.241146087646, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "__callback2__" - ], - "asctime": "2021-02-28 18:59:46,419", - "created": 1614535186.419685, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback2__ to process received data", - "module": "__init__", - "msecs": 419.68488693237305, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16515.615940093994, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: operation not permitted", - "35" - ], - "asctime": "2021-02-28 18:59:46,420", - "created": 1614535186.420001, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", - "module": "__init__", - "msecs": 420.0010299682617, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16515.932083129883, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8" - ], - "asctime": "2021-02-28 18:59:46,421", - "created": 1614535186.421782, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8", - "module": "__init__", - "msecs": 421.7820167541504, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16517.71306991577, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8" - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422007, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e8", - "module": "__init__", - "msecs": 422.00708389282227, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16517.938137054443, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422138, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 422.137975692749, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.06902885437, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422214, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 422.2140312194824, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.145084381104, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422299, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 422.2989082336426, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.229961395264, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422374, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 422.37401008605957, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.30506324768, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422461, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 422.46103286743164, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.392086029053, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422523, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 422.52302169799805, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.45407485962, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.4226, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 422.60003089904785, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.53108406067, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422664, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 422.66392707824707, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.594980239868, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.42275, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 422.74999618530273, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.681049346924, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422811, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 422.81103134155273, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.742084503174, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-server:", - "(5): 57 12 a7 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422905, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): 57 12 a7 3a 3e", - "module": "__init__", - "msecs": 422.90496826171875, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.83602142334, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(5): 57 12 a7 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,422", - "created": 1614535186.422977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): 57 12 a7 3a 3e", - "module": "__init__", - "msecs": 422.9769706726074, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.90802383423, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,423", - "created": 1614535186.423056, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 423.05588722229004, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16518.98694038391, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,423", - "created": 1614535186.423132, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 423.13194274902344, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16519.062995910645, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(61): 7b 22 73 74 61 74 75 73 22 3a 20 36 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 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7" - ], - "asctime": "2021-02-28 18:59:46,423", - "created": 1614535186.423284, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 7b 22 73 74 61 74 75 73 22 3a 20 36 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 33 35 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e8 57 12 a7", - "module": "stp", - "msecs": 423.28405380249023, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16519.21510696411, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: operation not permitted", - "35" - ], - "asctime": "2021-02-28 18:59:46,423", - "created": 1614535186.423449, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", - "module": "__init__", - "msecs": 423.4490394592285, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16519.38009262085, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:46,423", - "created": 1614535186.423563, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 423.56300354003906, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16519.49405670166, - "thread": 139997193688832, - "threadName": "Thread-28" - } - ], - "msecs": 582.1309089660645, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16678.061962127686, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.1585679054260254 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,583", - "created": 1614535186.583867, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,582", - "created": 1614535186.582876, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 582.8759670257568, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16678.807020187378, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,583", - "created": 1614535186.583193, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 583.1930637359619, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16679.124116897583, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 583.867073059082, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16679.798126220703, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0006740093231201172 - }, - { - "args": [ - "{u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,585", - "created": 1614535186.585248, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,584", - "created": 1614535186.584341, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 6, u'service_id': 11, u'data': 35, u'data_id': 0} ()", - "module": "test", - "msecs": 584.3410491943359, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16680.272102355957, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 6, 'service_id': 11, 'data': 35, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,584", - "created": 1614535186.58493, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 6, 'service_id': 11, 'data': 35, 'data_id': 0} ()", - "module": "test", - "msecs": 584.9299430847168, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16680.860996246338, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 585.2479934692383, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16681.17904663086, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.0003180503845214844 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:46,586", - "created": 1614535186.58612, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "choice_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 203, - "message": "Removing Callback for a specific Data-ID and all Serice-IDs", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback2__'", - "None", - "0" - ], - "asctime": "2021-02-28 18:59:46,585", - "created": 1614535186.585832, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "WARNING", - "levelno": 30, - "lineno": 164, - "message": "prot-server: Deleting existing callback '__callback2__' for service_id (None) and data_id (0)!", - "module": "__init__", - "msecs": 585.8321189880371, - "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16681.76317214966, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 586.1198902130127, - "msg": "Removing Callback for a specific Data-ID and all Serice-IDs", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16682.050943374634, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00028777122497558594 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:46,788", - "created": 1614535186.788414, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "choice_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 206, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:46,587", - "created": 1614535186.587034, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 587.0339870452881, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16682.96504020691, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:46,621", - "created": 1614535186.621494, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 621.4940547943115, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16717.425107955933, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6" - ], - "asctime": "2021-02-28 18:59:46,622", - "created": 1614535186.622716, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d e6", - "module": "__init__", - "msecs": 622.715950012207, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16718.647003173828, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,623", - "created": 1614535186.623068, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 623.06809425354, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16718.99914741516, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,623", - "created": 1614535186.623313, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 623.3129501342773, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16719.2440032959, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,623", - "created": 1614535186.623789, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 623.7890720367432, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16719.720125198364, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,624", - "created": 1614535186.62412, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 624.1199970245361, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16720.051050186157, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,624", - "created": 1614535186.624652, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 624.6519088745117, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16720.582962036133, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,624", - "created": 1614535186.624914, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 624.9139308929443, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16720.844984054565, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,625", - "created": 1614535186.625225, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 625.2250671386719, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16721.156120300293, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,625", - "created": 1614535186.625449, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 625.4489421844482, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16721.37999534607, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,625", - "created": 1614535186.625883, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 625.8831024169922, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16721.814155578613, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,626", - "created": 1614535186.626092, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 626.0919570922852, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16722.023010253906, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-client:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,626", - "created": 1614535186.626541, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 626.5408992767334, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16722.471952438354, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(5): 17 fc 16 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,626", - "created": 1614535186.626731, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 17 fc 16 3a 3e", - "module": "__init__", - "msecs": 626.7309188842773, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16722.6619720459, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,626", - "created": 1614535186.626915, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 626.9149780273438, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16722.846031188965, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,627", - "created": 1614535186.627098, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 627.0980834960938, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16723.029136657715, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16" - ], - "asctime": "2021-02-28 18:59:46,627", - "created": 1614535186.627356, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 33 31 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d e6 17 fc 16", - "module": "stp", - "msecs": 627.3560523986816, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16723.287105560303, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 18:59:46,627", - "created": 1614535186.627558, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 627.5579929351807, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16723.4890460968, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "__callback3__" - ], - "asctime": "2021-02-28 18:59:46,627", - "created": 1614535186.627666, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback3__ to process received data", - "module": "__init__", - "msecs": 627.6659965515137, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16723.597049713135, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "36" - ], - "asctime": "2021-02-28 18:59:46,627", - "created": 1614535186.62779, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"36\"", - "module": "__init__", - "msecs": 627.7899742126465, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16723.721027374268, - "thread": 139997202081536, - "threadName": "Thread-27" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a" - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.628188, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a", - "module": "__init__", - "msecs": 628.187894821167, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.118947982788, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a" - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.6284, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 7d 1a", - "module": "__init__", - "msecs": 628.4000873565674, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.33114051819, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.628515, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 628.5150051116943, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.446058273315, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.628598, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 628.5979747772217, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.529027938843, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.628685, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 628.6849975585938, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.616050720215, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.628751, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 628.7510395050049, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.682092666626, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.628847, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 628.8468837738037, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.777936935425, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.628914, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 628.9141178131104, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.84517097473, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,628", - "created": 1614535186.628993, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 628.993034362793, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.924087524414, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.629054, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 629.054069519043, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16724.985122680664, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.62914, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 629.1399002075195, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.07095336914, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.6292, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 629.1999816894531, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.131034851074, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-server:", - "(5): 5b f9 7e 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.629298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): 5b f9 7e 3a 3e", - "module": "__init__", - "msecs": 629.2979717254639, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.229024887085, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "comm-client:", - "(5): 5b f9 7e 3a 3e" - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.62937, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): 5b f9 7e 3a 3e", - "module": "__init__", - "msecs": 629.3699741363525, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.301027297974, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.629439, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 629.439115524292, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.370168685913, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.6295, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 629.4999122619629, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.430965423584, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e" - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.629664, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 64 61 74 61 22 3a 20 33 36 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 1a 5b f9 7e", - "module": "stp", - "msecs": 629.6639442443848, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.594997406006, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "36" - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.629839, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 457, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"36\"", - "module": "__init__", - "msecs": 629.8389434814453, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.769996643066, - "thread": 139997193688832, - "threadName": "Thread-28" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:46,629", - "created": 1614535186.629953, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 629.9529075622559, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16725.883960723877, - "thread": 139997193688832, - "threadName": "Thread-28" - } - ], - "msecs": 788.4140014648438, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16884.345054626465, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.1584610939025879 - }, - { - "args": [ - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,789", - "created": 1614535186.789808, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,789", - "created": 1614535186.789106, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {u'status': 0, u'service_id': 10, u'data': 31, u'data_id': 0} ()", - "module": "test", - "msecs": 789.1058921813965, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16885.036945343018, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,789", - "created": 1614535186.789472, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'status': 0, 'service_id': 10, 'data': 31, 'data_id': 0} ()", - "module": "test", - "msecs": 789.4721031188965, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16885.403156280518, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 789.8080348968506, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16885.73908805847, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00033593177795410156 - }, - { - "args": [ - "{u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,791", - "created": 1614535186.791079, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,790", - "created": 1614535186.790512, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {u'status': 0, u'service_id': 11, u'data': 36, u'data_id': 0} ()", - "module": "test", - "msecs": 790.5120849609375, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16886.44313812256, - "thread": 139999152072512, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'status': 0, 'service_id': 11, 'data': 36, 'data_id': 0}", - "" - ], - "asctime": "2021-02-28 18:59:46,790", - "created": 1614535186.790808, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'status': 0, 'service_id': 11, 'data': 36, 'data_id': 0} ()", - "module": "test", - "msecs": 790.8079624176025, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16886.739015579224, - "thread": 139999152072512, - "threadName": "MainThread" - } - ], - "msecs": 791.079044342041, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66085, - "processName": "MainProcess", - "relativeCreated": 16887.010097503662, - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 0.00027108192443847656 - } - ], - "thread": 139999152072512, - "threadName": "MainThread", - "time_consumption": 1.1718311309814453, - "time_finished": "2021-02-28 18:59:46,791", - "time_start": "2021-02-28 18:59:45,619" - } - }, - "testrun_id": "p2", - "time_consumption": 19.450382471084595, - "uid_list_sorted": [ - "_XzMFcHYZEem_kd-7nxt1sg", - "_7izDUEzYEeuiHtQbLi1mZg", - "_-UtxUEzYEeuiHtQbLi1mZg", - "_AlIUwEzZEeuiHtQbLi1mZg", - "_2pi_8EzZEeuiHtQbLi1mZg", - "_ZJMD8EzaEeuiHtQbLi1mZg", - "_j-npsE0MEeuiHtQbLi1mZg", - "_4w4SsE1DEeuiHtQbLi1mZg", - "_Pn3WgE0NEeuiHtQbLi1mZg", - "_CZeooE0YEeuiHtQbLi1mZg", - "_Lmn-kE0hEeuiHtQbLi1mZg", - "_k-Q4EE0oEeuiHtQbLi1mZg", - "_ZOW3ME0vEeuiHtQbLi1mZg", - "_r9srME0vEeuiHtQbLi1mZg", - "_Tb-78E4LEeupHeIYRnC0qw", - "_YfrfUE4LEeupHeIYRnC0qw", - "_k7opsE4LEeupHeIYRnC0qw", - "_tb5akE4LEeupHeIYRnC0qw", - "_aA508E4gEeupHeIYRnC0qw", - "_elO7wE4gEeupHeIYRnC0qw", - "_gvJ1oE4gEeupHeIYRnC0qw", - "_YhmzIE4lEeupHeIYRnC0qw" - ] - }, - { - "heading_dict": { - "_-UtxUEzYEeuiHtQbLi1mZg": "Data-ID", - "_2pi_8EzZEeuiHtQbLi1mZg": "A full Message Object including the defined properties and data shall be transfered.", - "_4w4SsE1DEeuiHtQbLi1mZg": "An automatic authentification shall available", - "_7izDUEzYEeuiHtQbLi1mZg": "Service-ID", - "_AlIUwEzZEeuiHtQbLi1mZg": "Data", - "_CZeooE0YEeuiHtQbLi1mZg": "A whitelist for communication (rx and tx) shall be available to enable communication for unauthorised counterparts", - "_GhVN8E4MEeupHeIYRnC0qw": "Some additional Information and Passthrough Methods", - "_Lmn-kE0hEeuiHtQbLi1mZg": "Define a channel name for the server and client after connection is established", - "_MR7eOHYYEem_kd-7nxt1sg": "Message Object", - "_Pn3WgE0NEeuiHtQbLi1mZg": "Communication (rx and tx) shall be disabled, if a secret is given but no authentification had been successfully performed.", - "_Tb-78E4LEeupHeIYRnC0qw": "It shall be possible to register a callback for a specific Service-ID and all Data-IDs", - "_XzMFcHYZEem_kd-7nxt1sg": "Status", - "_YfrfUE4LEeupHeIYRnC0qw": "It shall be possible to register a callback for a specific Data-IDs and all Service-IDs", - "_YhmzIE4lEeupHeIYRnC0qw": "A full Message Object including the defined properties and data shall be transfered.", - "_ZJMD8EzaEeuiHtQbLi1mZg": "A checksumm shall ensure the correct transmition", - "_ZOW3ME0vEeuiHtQbLi1mZg": "Registration of already registered request Service-ID or response Service-ID shall not be possible", - "_aA508E4gEeupHeIYRnC0qw": "Connection established information", - "_elO7wE4gEeupHeIYRnC0qw": "Is connected information", - "_gvJ1oE4gEeupHeIYRnC0qw": "Reconnect Method", - "_j-npsE0MEeuiHtQbLi1mZg": "An authentification between server and client shall be possible including status feedback methods ", - "_jZU84E4gEeupHeIYRnC0qw": "Depreceated struct protocol", - "_k-Q4EE0oEeuiHtQbLi1mZg": "The User shall be able to define a new service", - "_k7opsE4LEeupHeIYRnC0qw": "It shall be possible to register a callback for all incomming messages", - "_qUrK8E4LEeupHeIYRnC0qw": "Callbacks", - "_r9srME0vEeuiHtQbLi1mZg": "It shall be possible to register a callback for a specific Service- and Data-ID", - "_tb5akE4LEeupHeIYRnC0qw": "Callback choice, if several callbacks are available (caused by wildcard callbacks)", - "_zdGSEEzZEeuiHtQbLi1mZg": "Communication" - }, - "interpreter": "python 3.8.5 (final)", - "name": "Default Testsession name", - "number_of_failed_tests": 0, - "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 22, - "number_of_tests": 22, - "testcase_execution_level": 90, - "testcase_names": { - "0": "Single Test", - "10": "Smoke Test (Minumum subset)", - "50": "Short Test (Subset)", - "90": "Full Test (all defined tests)" - }, - "testcases": { - "_-UtxUEzYEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6370394, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 28, - "message": "_-UtxUEzYEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 637.0394229888916, - "msg": "_-UtxUEzYEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.60708618164062, - "stack_info": null, - "testcaseLogger": [ - { - "args": [ - "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6371226, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 10, - "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 637.122631072998, - "msg": "Creating empty message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.69029426574707, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'data_id'" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6372755, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "data_id is part of the message object is correct ('data_id' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "data_id is part of the message object", - "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", - "" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.637193, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (data_id is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", - "module": "test", - "msecs": 637.192964553833, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.76062774658203, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "data_id is part of the message object", - "'data_id'" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.637236, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (data_id is part of the message object): 'data_id' in result", - "module": "test", - "msecs": 637.2361183166504, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.80378150939941, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 637.2754573822021, - "msg": "data_id is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.84312057495117, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 3.933906555175781e-05 - }, - { - "args": [ - "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6373487, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 637.3486518859863, - "msg": "Creating a maximum message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.91631507873535, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'data_id'" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6374958, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "data_id is part of the message object is correct ('data_id' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "data_id is part of the message object", - "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", - "" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.637416, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (data_id is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", - "module": "test", - "msecs": 637.415885925293, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.98354911804199, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "data_id is part of the message object", - "'data_id'" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6374576, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (data_id is part of the message object): 'data_id' in result", - "module": "test", - "msecs": 637.4576091766357, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.02527236938477, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 637.495756149292, - "msg": "data_id is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.06341934204102, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 3.814697265625e-05 - }, - { - "args": [ - "'DID'", - "" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.637672, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Content in message object for data_id is correct (Content 'DID' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Content in message object for data_id", - "'DID'", - "" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.637566, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Content in message object for data_id): 'DID' ()", - "module": "test", - "msecs": 637.566089630127, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.13375282287598, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Content in message object for data_id", - "'DID'", - "" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6376133, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Content in message object for data_id): result = 'DID' ()", - "module": "test", - "msecs": 637.6132965087891, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.18095970153809, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 637.671947479248, - "msg": "Content in message object for data_id is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.23961067199707, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 5.8650970458984375e-05 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0006325244903564453, - "time_finished": "2021-02-28 18:59:51,637", - "time_start": "2021-02-28 18:59:51,637" - }, - "_2pi_8EzZEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.6385777, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 33, - "message": "_2pi_8EzZEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 638.5776996612549, - "msg": "_2pi_8EzZEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 126.1453628540039, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.641581, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.6390183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 639.0182971954346, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 126.5859603881836, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.6393282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 639.3282413482666, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 126.89590454101562, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.6394167, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 639.4166946411133, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 126.9843578338623, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.6395586, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 639.5585536956787, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.12621688842773, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.639623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 639.6229267120361, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.19058990478516, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.6397054, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 639.7054195404053, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.2730827331543, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.6397576, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 639.7576332092285, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.32529640197754, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.6398046, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 639.8046016693115, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.37226486206055, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.639852, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 639.8520469665527, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.41971015930176, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.639907, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 639.9068832397461, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.47454643249512, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:51,639", - "created": 1614535191.6399632, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 639.9631500244141, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.53081321716309, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.640013, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 640.0129795074463, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.58064270019531, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6400607, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 640.0606632232666, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.62832641601562, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.640108, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 640.1081085205078, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.67577171325684, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6401575, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 640.1574611663818, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.72512435913086, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6402094, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 640.209436416626, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.777099609375, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.640254, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 640.254020690918, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.82168388366699, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6403003, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 640.3002738952637, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.8679370880127, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6403534, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 640.3534412384033, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.92110443115234, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6404004, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 640.4004096984863, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 127.96807289123535, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6404436, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 640.4435634613037, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.01122665405273, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6404889, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 640.488862991333, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.05652618408203, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6405368, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 640.5367851257324, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.10444831848145, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6406293, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 640.6292915344238, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.19695472717285, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6406791, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 640.679121017456, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.24678421020508, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6407409, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 640.7408714294434, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.30853462219238, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6407871, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 640.7871246337891, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.3547878265381, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6408315, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 640.831470489502, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.39913368225098, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.640878, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 640.8779621124268, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.44562530517578, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6409247, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 640.9246921539307, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.4923553466797, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:51,640", - "created": 1614535191.6409726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 640.9726142883301, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.5402774810791, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6410193, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 641.019344329834, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.587007522583, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6410663, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 641.066312789917, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.63397598266602, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6411076, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 641.1075592041016, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.6752223968506, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6411574, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 641.1573886871338, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.7250518798828, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.64121, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 641.2100791931152, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.77774238586426, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6412568, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 641.2568092346191, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.82447242736816, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6413026, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 641.3025856018066, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.87024879455566, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6413589, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 641.3588523864746, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.92651557922363, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6414063, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 641.4062976837158, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 128.97396087646484, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6414497, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 641.4496898651123, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.01735305786133, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6414917, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 641.4916515350342, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.0593147277832, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.641535, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 641.5350437164307, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.1027069091797, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 641.5810585021973, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.1487216949463, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 4.601478576660156e-05 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:51,985", - "created": 1614535191.985574, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6416934, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 641.6933536529541, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.26101684570312, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6417437, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 641.7436599731445, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.31132316589355, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6417916, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 641.791582107544, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.35924530029297, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:51,641", - "created": 1614535191.6418686, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 641.8685913085938, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.43625450134277, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:51,642", - "created": 1614535191.6420746, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 642.0745849609375, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.64224815368652, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:51,642", - "created": 1614535191.6421297, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 642.12965965271, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.69732284545898, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:51,642", - "created": 1614535191.6421762, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 642.1761512756348, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.7438144683838, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:51,642", - "created": 1614535191.6423252, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 642.3251628875732, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 129.89282608032227, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:51,650", - "created": 1614535191.6505334, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 650.5334377288818, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.10110092163086, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,650", - "created": 1614535191.6506906, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 650.6905555725098, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.2582187652588, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:51,650", - "created": 1614535191.6507502, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 650.7501602172852, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.31782341003418, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,650", - "created": 1614535191.6508176, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 650.8176326751709, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.38529586791992, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,650", - "created": 1614535191.6508632, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 650.8631706237793, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.43083381652832, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,650", - "created": 1614535191.650931, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 650.9308815002441, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.49854469299316, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,650", - "created": 1614535191.6509902, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 650.9902477264404, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.55791091918945, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,651", - "created": 1614535191.6510515, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 651.0515213012695, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.61918449401855, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,651", - "created": 1614535191.6510937, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 651.0937213897705, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.66138458251953, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,651", - "created": 1614535191.6511526, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 651.1526107788086, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.72027397155762, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,651", - "created": 1614535191.651194, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 651.1940956115723, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.7617588043213, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:51,651", - "created": 1614535191.651292, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 651.292085647583, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 138.85974884033203, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:51,652", - "created": 1614535191.6522584, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 652.2583961486816, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 139.82605934143066, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,652", - "created": 1614535191.652382, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 652.3818969726562, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 139.94956016540527, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:51,652", - "created": 1614535191.6524415, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 652.4415016174316, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 140.00916481018066, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 18:59:51,652", - "created": 1614535191.6525333, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 652.5332927703857, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 140.10095596313477, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:51,652", - "created": 1614535191.6527107, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 652.7106761932373, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 140.27833938598633, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:51,652", - "created": 1614535191.6527815, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 652.7814865112305, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 140.3491497039795, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:51,652", - "created": 1614535191.652868, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 652.8680324554443, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 140.43569564819336, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:51,653", - "created": 1614535191.6533017, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 653.3017158508301, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 140.8693790435791, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:51,661", - "created": 1614535191.6615674, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 661.5674495697021, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.13511276245117, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,661", - "created": 1614535191.6617067, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 661.7066860198975, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.27434921264648, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:51,661", - "created": 1614535191.6617687, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 661.7686748504639, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.3363380432129, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,661", - "created": 1614535191.6618361, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 661.8361473083496, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.40381050109863, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,661", - "created": 1614535191.661882, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 661.8819236755371, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.44958686828613, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,661", - "created": 1614535191.661949, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 661.9489192962646, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.51658248901367, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,661", - "created": 1614535191.6619911, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 661.9911193847656, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.55878257751465, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,662", - "created": 1614535191.6620502, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 662.0502471923828, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.61791038513184, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,662", - "created": 1614535191.662094, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 662.0941162109375, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.66177940368652, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,662", - "created": 1614535191.6621513, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 662.1513366699219, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.7189998626709, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,662", - "created": 1614535191.662207, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 662.2068881988525, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.77455139160156, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:51,662", - "created": 1614535191.6622992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 662.2991561889648, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 149.86681938171387, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:51,663", - "created": 1614535191.663226, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 663.2258892059326, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 150.79355239868164, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,663", - "created": 1614535191.6633239, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 663.3238792419434, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 150.89154243469238, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:51,663", - "created": 1614535191.6633835, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 663.3834838867188, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 150.95114707946777, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 18:59:51,663", - "created": 1614535191.6634674, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 663.4674072265625, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 151.03507041931152, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:51,663", - "created": 1614535191.663614, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 663.61403465271, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 151.18169784545898, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:51,663", - "created": 1614535191.6636832, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 663.6831760406494, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 151.25083923339844, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - } - ], - "msecs": 985.5740070343018, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 473.1416702270508, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.32189083099365234 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:52,189", - "created": 1614535192.189216, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "send_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 53, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:51,986", - "created": 1614535191.9862568, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 986.2568378448486, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 473.82450103759766, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:51,987", - "created": 1614535191.987213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 987.2128963470459, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 474.7805595397949, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:51,995", - "created": 1614535191.9958887, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 995.8887100219727, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 483.4563732147217, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,996", - "created": 1614535191.996225, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 996.225118637085, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 483.792781829834, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:51,996", - "created": 1614535191.9964006, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 996.4005947113037, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 483.96825790405273, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,996", - "created": 1614535191.9966063, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 996.6063499450684, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 484.1740131378174, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,996", - "created": 1614535191.9967484, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 996.7484474182129, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 484.3161106109619, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,996", - "created": 1614535191.9969563, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 996.9563484191895, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 484.5240116119385, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,997", - "created": 1614535191.997101, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 997.1010684967041, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 484.6687316894531, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,997", - "created": 1614535191.997291, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 997.291088104248, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 484.85875129699707, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,997", - "created": 1614535191.9974213, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 997.4212646484375, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 484.9889278411865, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:51,997", - "created": 1614535191.9976065, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 997.6065158843994, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 485.17417907714844, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:51,997", - "created": 1614535191.9977694, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 997.7693557739258, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 485.3370189666748, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-client:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 18:59:51,998", - "created": 1614535191.998055, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 998.0549812316895, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 485.6226444244385, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "comm-server:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 18:59:52,002", - "created": 1614535192.002442, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 2.441883087158203, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 490.0095462799072, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,002", - "created": 1614535192.0029278, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 2.9277801513671875, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 490.4954433441162, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:52,003", - "created": 1614535192.003127, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 3.1270980834960938, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 490.6947612762451, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" - ], - "asctime": "2021-02-28 18:59:52,003", - "created": 1614535192.003422, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "stp", - "msecs": 3.4220218658447266, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 490.98968505859375, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:52,003", - "created": 1614535192.003834, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 3.8340091705322266, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 491.40167236328125, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:52,004", - "created": 1614535192.0040665, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 4.06646728515625, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 491.6341304779053, - "stack_info": null, - "thread": 140381119670016, - "threadName": "Thread-1" - } - ], - "msecs": 189.21589851379395, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 676.783561706543, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.1851494312286377 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:52,190", - "created": 1614535192.1901047, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:52,189", - "created": 1614535192.1897483, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 189.74828720092773, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 677.3159503936768, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:52,189", - "created": 1614535192.189945, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 189.94498252868652, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 677.5126457214355, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 190.10472297668457, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 677.6723861694336, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015974044799804688 - }, - { - "args": [ - "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:52,190", - "created": 1614535192.1906612, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:52,190", - "created": 1614535192.1903546, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", - "module": "test", - "msecs": 190.354585647583, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 677.922248840332, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:52,190", - "created": 1614535192.1905124, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", - "module": "test", - "msecs": 190.51241874694824, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 678.0800819396973, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 190.66119194030762, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 678.2288551330566, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.000148773193359375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:52,392", - "created": 1614535192.3926008, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "send_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 59, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:52,191", - "created": 1614535192.1910634, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 450, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 191.06340408325195, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 678.631067276001, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:52,191", - "created": 1614535192.1919703, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 191.9703483581543, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 679.5380115509033, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:52,200", - "created": 1614535192.2004719, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 200.4718780517578, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 688.0395412445068, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,200", - "created": 1614535192.2007775, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 200.77753067016602, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 688.345193862915, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:52,200", - "created": 1614535192.2009494, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 200.94943046569824, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 688.5170936584473, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,201", - "created": 1614535192.2011833, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 201.18331909179688, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 688.7509822845459, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,201", - "created": 1614535192.2013268, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 201.32684707641602, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 688.894510269165, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,201", - "created": 1614535192.201536, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 201.5359401702881, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 689.1036033630371, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,201", - "created": 1614535192.2016993, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 201.69925689697266, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 689.2669200897217, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,201", - "created": 1614535192.2019057, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 201.9057273864746, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 689.4733905792236, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,202", - "created": 1614535192.2020729, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 202.0728588104248, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 689.6405220031738, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,202", - "created": 1614535192.202289, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 202.28910446166992, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 689.856767654419, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,202", - "created": 1614535192.2024674, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 202.4674415588379, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 690.0351047515869, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-server:", - "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" - ], - "asctime": "2021-02-28 18:59:52,202", - "created": 1614535192.2028084, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", - "module": "__init__", - "msecs": 202.80838012695312, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 690.3760433197021, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "comm-client:", - "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" - ], - "asctime": "2021-02-28 18:59:52,207", - "created": 1614535192.2072153, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", - "module": "__init__", - "msecs": 207.2153091430664, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 694.7829723358154, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,207", - "created": 1614535192.2076871, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 207.6871395111084, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 695.2548027038574, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:52,207", - "created": 1614535192.2078834, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 207.88335800170898, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 695.451021194458, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" - ], - "asctime": "2021-02-28 18:59:52,208", - "created": 1614535192.2081876, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "stp", - "msecs": 208.18758010864258, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 695.7552433013916, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:52,208", - "created": 1614535192.2086444, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 450, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 208.64439010620117, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 696.2120532989502, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:52,208", - "created": 1614535192.2089114, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 208.91141891479492, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 696.479082107544, - "stack_info": null, - "thread": 140381111277312, - "threadName": "Thread-2" - } - ], - "msecs": 392.60077476501465, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 880.1684379577637, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.18368935585021973 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:52,393", - "created": 1614535192.393465, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:52,393", - "created": 1614535192.393086, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 393.0859565734863, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 880.6536197662354, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:52,393", - "created": 1614535192.393276, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 393.2759761810303, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 880.8436393737793, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 393.4650421142578, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 881.0327053070068, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00018906593322753906 - }, - { - "args": [ - "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:52,394", - "created": 1614535192.3941064, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:52,393", - "created": 1614535192.3937721, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", - "module": "test", - "msecs": 393.7721252441406, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 881.3397884368896, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:52,393", - "created": 1614535192.3939471, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", - "module": "test", - "msecs": 393.9471244812012, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 881.5147876739502, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 394.106388092041, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 881.67405128479, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015926361083984375 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.7555286884307861, - "time_finished": "2021-02-28 18:59:52,394", - "time_start": "2021-02-28 18:59:51,638" - }, - "_4w4SsE1DEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:54,330", - "created": 1614535194.3304853, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 36, - "message": "_4w4SsE1DEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 330.48534393310547, - "msg": "_4w4SsE1DEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2818.0530071258545, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:54,340", - "created": 1614535194.340709, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:54,331", - "created": 1614535194.331893, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 331.8929672241211, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2819.46063041687, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:54,333", - "created": 1614535194.3330784, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 333.07838439941406, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2820.646047592163, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:54,333", - "created": 1614535194.3333998, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 333.39977264404297, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2820.967435836792, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:54,333", - "created": 1614535194.3338401, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 333.84013175964355, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2821.4077949523926, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:54,334", - "created": 1614535194.3340704, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 334.07044410705566, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2821.6381072998047, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:54,334", - "created": 1614535194.334336, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 334.3360424041748, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2821.903705596924, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:54,334", - "created": 1614535194.3345273, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 334.52725410461426, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2822.0949172973633, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:54,334", - "created": 1614535194.3346996, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 334.6996307373047, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2822.2672939300537, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:54,334", - "created": 1614535194.334887, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 334.8870277404785, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2822.4546909332275, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:54,335", - "created": 1614535194.335075, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 335.07490158081055, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2822.6425647735596, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:54,335", - "created": 1614535194.3352633, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 335.2632522583008, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2822.83091545105, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:54,335", - "created": 1614535194.3354564, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 335.45637130737305, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2823.024034500122, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:54,335", - "created": 1614535194.3357055, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 335.7055187225342, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2823.273181915283, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:54,335", - "created": 1614535194.3359146, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 335.91461181640625, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2823.4822750091553, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:54,336", - "created": 1614535194.3361547, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 336.1546993255615, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2823.7223625183105, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:54,336", - "created": 1614535194.3363674, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 336.3673686981201, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2823.935031890869, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:54,336", - "created": 1614535194.3365278, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 336.52782440185547, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2824.0954875946045, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:54,336", - "created": 1614535194.3366814, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 336.6813659667969, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2824.249029159546, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:54,336", - "created": 1614535194.336833, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 336.83300018310547, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2824.4006633758545, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:54,336", - "created": 1614535194.3369782, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 336.9781970977783, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2824.5458602905273, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:54,337", - "created": 1614535194.3371167, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 337.1167182922363, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2824.6843814849854, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:54,337", - "created": 1614535194.337265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 337.2650146484375, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2824.8326778411865, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:54,337", - "created": 1614535194.3374057, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 337.4056816101074, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2824.9733448028564, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:54,337", - "created": 1614535194.3377013, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 337.70132064819336, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2825.2689838409424, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:54,337", - "created": 1614535194.3378649, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 337.86487579345703, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2825.432538986206, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:54,338", - "created": 1614535194.3380616, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 338.0615711212158, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2825.629234313965, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:54,338", - "created": 1614535194.3382106, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 338.2105827331543, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2825.7782459259033, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:54,338", - "created": 1614535194.338371, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 338.37103843688965, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2825.9387016296387, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:54,338", - "created": 1614535194.3385108, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 338.51075172424316, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2826.078414916992, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:54,338", - "created": 1614535194.3386676, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 338.667631149292, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2826.235294342041, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:54,338", - "created": 1614535194.3388286, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 338.82856369018555, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2826.3962268829346, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:54,338", - "created": 1614535194.3389885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 338.9885425567627, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2826.5562057495117, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:54,339", - "created": 1614535194.339138, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 339.1380310058594, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2826.7056941986084, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:54,339", - "created": 1614535194.3392692, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 339.26916122436523, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2826.8368244171143, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:54,339", - "created": 1614535194.3394163, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 339.4162654876709, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2826.98392868042, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:54,339", - "created": 1614535194.3395727, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 339.5726680755615, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2827.1403312683105, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:54,339", - "created": 1614535194.3397145, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 339.71452713012695, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2827.282190322876, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:54,339", - "created": 1614535194.3398592, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 339.8592472076416, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2827.4269104003906, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:54,340", - "created": 1614535194.340006, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 340.00611305236816, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2827.573776245117, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:54,340", - "created": 1614535194.3401575, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 340.15750885009766, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2827.7251720428467, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:54,340", - "created": 1614535194.3402936, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 340.29364585876465, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2827.8613090515137, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:54,340", - "created": 1614535194.3404412, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 340.4412269592285, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2828.0088901519775, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:54,340", - "created": 1614535194.3405795, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 340.5795097351074, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2828.1471729278564, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 340.70897102355957, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2828.2766342163086, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00012946128845214844 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:54,685", - "created": 1614535194.6858075, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:54,341", - "created": 1614535194.3410015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 341.0015106201172, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2828.569173812866, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:54,341", - "created": 1614535194.3411455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 341.14551544189453, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2828.7131786346436, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:54,341", - "created": 1614535194.3412833, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 341.28332138061523, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2828.8509845733643, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:54,341", - "created": 1614535194.3415189, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 341.5188789367676, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2829.0865421295166, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:54,342", - "created": 1614535194.3420923, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 342.09227561950684, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2829.659938812256, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:54,342", - "created": 1614535194.3422682, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 342.2682285308838, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2829.835891723633, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:54,342", - "created": 1614535194.3424182, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 342.4181938171387, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2829.9858570098877, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:54,343", - "created": 1614535194.3430238, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 343.02377700805664, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2830.5914402008057, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:54,351", - "created": 1614535194.3515198, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 351.5198230743408, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2839.08748626709, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,351", - "created": 1614535194.3518329, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 351.8328666687012, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2839.40052986145, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:54,352", - "created": 1614535194.3520098, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 352.00977325439453, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2839.5774364471436, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,352", - "created": 1614535194.3522692, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 352.26917266845703, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2839.836835861206, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,352", - "created": 1614535194.3524194, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 352.419376373291, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2839.98703956604, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,352", - "created": 1614535194.352643, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 352.6430130004883, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2840.2106761932373, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,352", - "created": 1614535194.3527927, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 352.79273986816406, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2840.360403060913, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,352", - "created": 1614535194.3529956, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 352.9956340789795, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2840.5632972717285, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,353", - "created": 1614535194.3531477, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 353.1477451324463, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2840.7154083251953, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,353", - "created": 1614535194.353353, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 353.35302352905273, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2840.9206867218018, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,353", - "created": 1614535194.3535032, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 353.5032272338867, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2841.0708904266357, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:54,353", - "created": 1614535194.3538585, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 353.85847091674805, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2841.426134109497, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:54,355", - "created": 1614535194.3550153, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 355.0152778625488, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2842.582941055298, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,355", - "created": 1614535194.3553128, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 355.3128242492676, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2842.8804874420166, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:54,355", - "created": 1614535194.3554833, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 355.4832935333252, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2843.050956726074, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 18:59:54,355", - "created": 1614535194.3557465, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 355.7465076446533, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2843.3141708374023, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:54,356", - "created": 1614535194.356158, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 356.1580181121826, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2843.7256813049316, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:54,356", - "created": 1614535194.3563573, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 356.3573360443115, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2843.9249992370605, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:54,356", - "created": 1614535194.3566253, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 356.6253185272217, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2844.1929817199707, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:54,357", - "created": 1614535194.3575115, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 357.5115203857422, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2845.079183578491, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:54,365", - "created": 1614535194.3659868, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 365.98682403564453, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2853.5544872283936, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,366", - "created": 1614535194.3663034, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 366.3034439086914, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2853.8711071014404, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:54,366", - "created": 1614535194.3664865, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 366.4865493774414, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2854.0542125701904, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,366", - "created": 1614535194.3667176, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 366.7175769805908, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2854.28524017334, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,366", - "created": 1614535194.366868, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 366.8680191040039, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2854.435682296753, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,367", - "created": 1614535194.3670924, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 367.0923709869385, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2854.6600341796875, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,367", - "created": 1614535194.3672392, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 367.23923683166504, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2854.806900024414, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,367", - "created": 1614535194.3674412, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 367.44117736816406, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2855.008840560913, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,367", - "created": 1614535194.3676083, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 367.60830879211426, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2855.1759719848633, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,367", - "created": 1614535194.3678045, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 367.80452728271484, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2855.372190475464, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,367", - "created": 1614535194.3679554, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 367.95544624328613, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2855.523109436035, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:54,368", - "created": 1614535194.3682468, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 368.24679374694824, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2855.8144569396973, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:54,369", - "created": 1614535194.3694627, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 369.4627285003662, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2857.0303916931152, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,369", - "created": 1614535194.3698757, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 369.8756694793701, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2857.443332672119, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:54,370", - "created": 1614535194.3702085, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 370.2085018157959, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2857.776165008545, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 18:59:54,370", - "created": 1614535194.3705115, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 370.511531829834, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2858.079195022583, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:54,370", - "created": 1614535194.3709073, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 370.9073066711426, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2858.4749698638916, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:54,371", - "created": 1614535194.371104, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 371.10400199890137, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2858.6716651916504, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - } - ], - "msecs": 685.807466506958, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3173.375129699707, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.31470346450805664 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:54,686", - "created": 1614535194.6864164, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "automatic_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "Identical secrets set and automatic authentification", - "module": "test_communication", - "moduleLogger": [], - "msecs": 686.4163875579834, - "msg": "Identical secrets set and automatic authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3173.9840507507324, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:54,687", - "created": 1614535194.6871388, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:54,686", - "created": 1614535194.6867542, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): False ()", - "module": "test", - "msecs": 686.7542266845703, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3174.3218898773193, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "False", - "" - ], - "asctime": "2021-02-28 18:59:54,686", - "created": 1614535194.686955, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = False ()", - "module": "test", - "msecs": 686.9549751281738, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3174.522638320923, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 687.1387958526611, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3174.70645904541, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001838207244873047 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:54,687", - "created": 1614535194.6877446, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:54,687", - "created": 1614535194.687414, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): False ()", - "module": "test", - "msecs": 687.4139308929443, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3174.9815940856934, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "False", - "" - ], - "asctime": "2021-02-28 18:59:54,687", - "created": 1614535194.6875854, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = False ()", - "module": "test", - "msecs": 687.5853538513184, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3175.1530170440674, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 687.7446174621582, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3175.312280654907, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015926361083984375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:57,042", - "created": 1614535197.0425694, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "automatic_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 139, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:54,688", - "created": 1614535194.688098, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 688.0979537963867, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3175.6656169891357, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:54,688", - "created": 1614535194.688369, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 688.3690357208252, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3175.936698913574, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:54,688", - "created": 1614535194.6885464, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 688.5464191436768, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3176.114082336426, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:54,688", - "created": 1614535194.6887102, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 688.7102127075195, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3176.2778759002686, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:54,688", - "created": 1614535194.6888964, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 688.8964176177979, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3176.464080810547, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:54,689", - "created": 1614535194.6890604, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 689.0604496002197, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3176.6281127929688, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:54,689", - "created": 1614535194.6892269, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 689.2268657684326, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3176.7945289611816, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:54,689", - "created": 1614535194.6895359, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 689.5358562469482, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3177.1035194396973, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:54,690", - "created": 1614535194.6903749, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 690.3748512268066, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3177.9425144195557, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:54,691", - "created": 1614535194.691299, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 691.2989616394043, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3178.8666248321533, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:54,699", - "created": 1614535194.6998365, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 699.8364925384521, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3187.404155731201, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,700", - "created": 1614535194.700177, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 700.1769542694092, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3187.744617462158, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:54,700", - "created": 1614535194.7003803, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 700.3803253173828, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3187.947988510132, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,700", - "created": 1614535194.7006605, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 700.6604671478271, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3188.228130340576, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,700", - "created": 1614535194.7008343, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 700.8342742919922, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3188.401937484741, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,701", - "created": 1614535194.7010846, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 701.0846138000488, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3188.652276992798, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,701", - "created": 1614535194.701252, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 701.2519836425781, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3188.819646835327, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,701", - "created": 1614535194.701511, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 701.5109062194824, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3189.0785694122314, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,701", - "created": 1614535194.701715, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 701.7149925231934, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3189.2826557159424, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,701", - "created": 1614535194.701941, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 701.9410133361816, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3189.5086765289307, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:54,702", - "created": 1614535194.702097, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 702.0969390869141, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3189.664602279663, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:54,702", - "created": 1614535194.7024148, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 702.4147510528564, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3189.9824142456055, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:54,703", - "created": 1614535194.7035806, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 703.5806179046631, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3191.148281097412, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:54,703", - "created": 1614535194.7039232, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 703.923225402832, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3191.490888595581, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:54,704", - "created": 1614535194.7041225, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 704.1225433349609, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3191.69020652771, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 18:59:54,704", - "created": 1614535194.7044406, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 704.4405937194824, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3192.0082569122314, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:54,704", - "created": 1614535194.7049, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 704.9000263214111, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3192.46768951416, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:54,705", - "created": 1614535194.7051256, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 705.1255702972412, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3192.6932334899902, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:54,705", - "created": 1614535194.7054176, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 705.4176330566406, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 3192.9852962493896, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:56,698", - "created": 1614535196.698842, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 698.8420486450195, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5186.409711837769, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:56,699", - "created": 1614535196.6990657, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 699.0656852722168, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5186.633348464966, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:56,699", - "created": 1614535196.699228, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 699.228048324585, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5186.795711517334, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:56,713", - "created": 1614535196.713739, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 713.7389183044434, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5201.306581497192, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:56,714", - "created": 1614535196.7143621, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 714.3621444702148, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5201.929807662964, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:56,722", - "created": 1614535196.7222981, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 722.2981452941895, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5209.8658084869385, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,722", - "created": 1614535196.7226646, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 722.6645946502686, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5210.232257843018, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:56,722", - "created": 1614535196.7228792, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 722.87917137146, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5210.446834564209, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,723", - "created": 1614535196.7231174, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 723.1173515319824, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5210.685014724731, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,723", - "created": 1614535196.7232795, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 723.2794761657715, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5210.8471393585205, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,723", - "created": 1614535196.7235138, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 723.5138416290283, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5211.081504821777, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,723", - "created": 1614535196.7236657, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 723.665714263916, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5211.233377456665, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,723", - "created": 1614535196.7238739, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 723.8738536834717, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5211.441516876221, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,724", - "created": 1614535196.7240233, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 724.0233421325684, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5211.591005325317, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,724", - "created": 1614535196.7242198, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 724.219799041748, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5211.787462234497, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,724", - "created": 1614535196.7243667, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 724.3666648864746, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5211.934328079224, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(6): fd 82 a2 a9 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,724", - "created": 1614535196.7246833, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", - "module": "__init__", - "msecs": 724.6832847595215, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5212.2509479522705, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:56,725", - "created": 1614535196.725104, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 725.1040935516357, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5212.671756744385, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,725", - "created": 1614535196.7253892, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 725.3892421722412, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5212.95690536499, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:56,725", - "created": 1614535196.7255886, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 725.5885601043701, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5213.156223297119, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,725", - "created": 1614535196.7259345, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 725.9345054626465, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5213.5021686553955, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,726", - "created": 1614535196.726109, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 726.1090278625488, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5213.676691055298, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,726", - "created": 1614535196.726347, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 726.3469696044922, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5213.914632797241, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,726", - "created": 1614535196.7264984, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 726.4983654022217, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5214.066028594971, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,726", - "created": 1614535196.7267098, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 726.7098426818848, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5214.277505874634, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,726", - "created": 1614535196.726875, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 726.8750667572021, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5214.442729949951, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,727", - "created": 1614535196.727079, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 727.078914642334, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5214.646577835083, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,727", - "created": 1614535196.727227, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 727.226972579956, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5214.794635772705, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,727", - "created": 1614535196.7274942, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 727.4942398071289, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5215.061902999878, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(6): fd 82 a2 a9 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,728", - "created": 1614535196.7280273, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", - "module": "__init__", - "msecs": 728.02734375, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5215.595006942749, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,728", - "created": 1614535196.7283642, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 728.3642292022705, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5215.9318923950195, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:56,728", - "created": 1614535196.7285652, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 728.5652160644531, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5216.132879257202, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(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 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 fd 82 a2 a9" - ], - "asctime": "2021-02-28 18:59:56,728", - "created": 1614535196.7288768, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 fd 82 a2 a9", - "module": "stp", - "msecs": 728.8768291473389, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5216.444492340088, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:56,729", - "created": 1614535196.7293248, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 729.3248176574707, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5216.89248085022, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 18:59:56,729", - "created": 1614535196.7295446, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 729.5446395874023, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5217.112302780151, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'3a3237ba0428bcf48ee3dcfb249aa00dcec1449cf44a09053fab8f26414a3814'" - ], - "asctime": "2021-02-28 18:59:56,729", - "created": 1614535196.729921, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'3a3237ba0428bcf48ee3dcfb249aa00dcec1449cf44a09053fab8f26414a3814'\"", - "module": "__init__", - "msecs": 729.9211025238037, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5217.488765716553, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,736", - "created": 1614535196.7362683, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 736.2682819366455, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5223.8359451293945, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,736", - "created": 1614535196.7365952, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 736.5951538085938, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5224.162817001343, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:56,736", - "created": 1614535196.73683, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 736.8299961090088, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5224.397659301758, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 18:59:56,737", - "created": 1614535196.737121, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 737.1211051940918, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5224.688768386841, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:56,737", - "created": 1614535196.7375364, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 737.5364303588867, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5225.104093551636, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:56,737", - "created": 1614535196.7377849, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 737.7848625183105, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5225.35252571106, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 61 33 32" - ], - "asctime": "2021-02-28 18:59:56,739", - "created": 1614535196.7390175, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 61 33 32", - "module": "__init__", - "msecs": 739.0174865722656, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5226.585149765015, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 61 33 32" - ], - "asctime": "2021-02-28 18:59:56,747", - "created": 1614535196.7476656, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 61 33 32", - "module": "__init__", - "msecs": 747.6656436920166, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5235.233306884766, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,748", - "created": 1614535196.748066, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 748.0659484863281, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5235.633611679077, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:56,748", - "created": 1614535196.748269, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 748.2690811157227, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5235.836744308472, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,748", - "created": 1614535196.7485092, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 748.5091686248779, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5236.076831817627, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,748", - "created": 1614535196.7486749, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 748.6748695373535, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5236.2425327301025, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,748", - "created": 1614535196.7489102, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 748.9101886749268, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5236.477851867676, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,749", - "created": 1614535196.749061, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 749.061107635498, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5236.628770828247, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,749", - "created": 1614535196.7492692, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 749.2692470550537, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5236.836910247803, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,749", - "created": 1614535196.7494175, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 749.4175434112549, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5236.985206604004, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,749", - "created": 1614535196.7496142, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 749.6142387390137, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5237.181901931763, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,749", - "created": 1614535196.7498124, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 749.8123645782471, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5237.380027770996, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(64): 33 37 62 61 30 34 32 38 62 63 66 34 38 65 65 33 64 63 66 62 32 34 39 61 61 30 30 64 63 65 63 31 34 34 39 63 66 34 34 61 30 39 30 35 33 66 61 62 38 66 32 36 34 31 34 61 33 38 31 34 22 7d aa d5" - ], - "asctime": "2021-02-28 18:59:56,750", - "created": 1614535196.7502031, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 33 37 62 61 30 34 32 38 62 63 66 34 38 65 65 33 64 63 66 62 32 34 39 61 61 30 30 64 63 65 63 31 34 34 39 63 66 34 34 61 30 39 30 35 33 66 61 62 38 66 32 36 34 31 34 61 33 38 31 34 22 7d aa d5", - "module": "__init__", - "msecs": 750.2031326293945, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5237.770795822144, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 33 37 62 61 30 34 32 38 62 63 66 34 38 65 65 33 64 63 66 62 32 34 39 61 61 30 30 64 63 65 63 31 34 34 39 63 66 34 34 61 30 39 30 35 33 66 61 62 38 66 32 36 34 31 34 61 33 38 31 34 22 7d aa d5" - ], - "asctime": "2021-02-28 18:59:56,758", - "created": 1614535196.7588353, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 33 37 62 61 30 34 32 38 62 63 66 34 38 65 65 33 64 63 66 62 32 34 39 61 61 30 30 64 63 65 63 31 34 34 39 63 66 34 34 61 30 39 30 35 33 66 61 62 38 66 32 36 34 31 34 61 33 38 31 34 22 7d aa d5", - "module": "__init__", - "msecs": 758.8353157043457, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5246.402978897095, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(4): 6a 51 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,759", - "created": 1614535196.7596328, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (4): 6a 51 3a 3e", - "module": "__init__", - "msecs": 759.6328258514404, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5247.200489044189, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(4): 6a 51 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,760", - "created": 1614535196.760548, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (4): 6a 51 3a 3e", - "module": "__init__", - "msecs": 760.5481147766113, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5248.11577796936, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,760", - "created": 1614535196.76085, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 760.8499526977539, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5248.417615890503, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:56,761", - "created": 1614535196.761053, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 761.0530853271484, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5248.6207485198975, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 33 61 33 32 33 37 62 61 30 34 32 38 62 63 66 34 38 65 65 33 64 63 66 62 32 34 39 61 61 30 30 64 63 65 63 31 34 34 39 63 66 34 34 61 30 39 30 35 33 66 61 62 38 66 32 36 34 31 34 61 33 38 31 34 22 7d aa d5 6a 51" - ], - "asctime": "2021-02-28 18:59:56,761", - "created": 1614535196.7614722, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 33 61 33 32 33 37 62 61 30 34 32 38 62 63 66 34 38 65 65 33 64 63 66 62 32 34 39 61 61 30 30 64 63 65 63 31 34 34 39 63 66 34 34 61 30 39 30 35 33 66 61 62 38 66 32 36 34 31 34 61 33 38 31 34 22 7d aa d5 6a 51", - "module": "stp", - "msecs": 761.472225189209, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5249.039888381958, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: seed", - "status: okay", - "'3a3237ba0428bcf48ee3dcfb249aa00dcec1449cf44a09053fab8f26414a3814'" - ], - "asctime": "2021-02-28 18:59:56,761", - "created": 1614535196.761972, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'3a3237ba0428bcf48ee3dcfb249aa00dcec1449cf44a09053fab8f26414a3814'\"", - "module": "__init__", - "msecs": 761.9719505310059, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5249.539613723755, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "__authentificate_create_key__" - ], - "asctime": "2021-02-28 18:59:56,762", - "created": 1614535196.7622035, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", - "module": "__init__", - "msecs": 762.2034549713135, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5249.7711181640625, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: key", - "status: okay", - "'8ad8a387c28241b38382d2f4646e10f85588c6ea360f393e7960022d028ef599155e9cb81186bb5cb4a63fbb57105f83ba1917d6beffb4d0549c521c4e1dd549'" - ], - "asctime": "2021-02-28 18:59:56,762", - "created": 1614535196.7625208, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'8ad8a387c28241b38382d2f4646e10f85588c6ea360f393e7960022d028ef599155e9cb81186bb5cb4a63fbb57105f83ba1917d6beffb4d0549c521c4e1dd549'\"", - "module": "__init__", - "msecs": 762.5207901000977, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5250.088453292847, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 61 64 38" - ], - "asctime": "2021-02-28 18:59:56,763", - "created": 1614535196.7638338, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 61 64 38", - "module": "__init__", - "msecs": 763.83376121521, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5251.401424407959, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 61 64 38" - ], - "asctime": "2021-02-28 18:59:56,772", - "created": 1614535196.772432, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 38 61 64 38", - "module": "__init__", - "msecs": 772.4320888519287, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5259.999752044678, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,772", - "created": 1614535196.7727678, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 772.7677822113037, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5260.335445404053, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:56,772", - "created": 1614535196.7729409, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 772.9408740997314, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5260.5085372924805, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,773", - "created": 1614535196.773146, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 773.1459140777588, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5260.713577270508, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,773", - "created": 1614535196.7732995, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 773.2994556427002, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5260.867118835449, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,773", - "created": 1614535196.7735133, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 773.5133171081543, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5261.080980300903, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,773", - "created": 1614535196.773647, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 773.6470699310303, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5261.214733123779, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,773", - "created": 1614535196.773866, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 773.8659381866455, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5261.4336013793945, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,773", - "created": 1614535196.7739964, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 773.9963531494141, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5261.564016342163, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,774", - "created": 1614535196.7741694, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 774.1694450378418, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5261.737108230591, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,774", - "created": 1614535196.7742963, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 774.2962837219238, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5261.863946914673, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(64): 61 33 38 37 63 32 38 32 34 31 62 33 38 33 38 32 64 32 66 34 36 34 36 65 31 30 66 38 35 35 38 38 63 36 65 61 33 36 30 66 33 39 33 65 37 39 36 30 30 32 32 64 30 32 38 65 66 35 39 39 31 35 35 65" - ], - "asctime": "2021-02-28 18:59:56,774", - "created": 1614535196.774633, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 61 33 38 37 63 32 38 32 34 31 62 33 38 33 38 32 64 32 66 34 36 34 36 65 31 30 66 38 35 35 38 38 63 36 65 61 33 36 30 66 33 39 33 65 37 39 36 30 30 32 32 64 30 32 38 65 66 35 39 39 31 35 35 65", - "module": "__init__", - "msecs": 774.6329307556152, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5262.200593948364, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 61 33 38 37 63 32 38 32 34 31 62 33 38 33 38 32 64 32 66 34 36 34 36 65 31 30 66 38 35 35 38 38 63 36 65 61 33 36 30 66 33 39 33 65 37 39 36 30 30 32 32 64 30 32 38 65 66 35 39 39 31 35 35 65" - ], - "asctime": "2021-02-28 18:59:56,783", - "created": 1614535196.7830687, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 61 33 38 37 63 32 38 32 34 31 62 33 38 33 38 32 64 32 66 34 36 34 36 65 31 30 66 38 35 35 38 38 63 36 65 61 33 36 30 66 33 39 33 65 37 39 36 30 30 32 32 64 30 32 38 65 66 35 39 39 31 35 35 65", - "module": "__init__", - "msecs": 783.0686569213867, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5270.636320114136, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(64): 39 63 62 38 31 31 38 36 62 62 35 63 62 34 61 36 33 66 62 62 35 37 31 30 35 66 38 33 62 61 31 39 31 37 64 36 62 65 66 66 62 34 64 30 35 34 39 63 35 32 31 63 34 65 31 64 64 35 34 39 22 7d 40 75" - ], - "asctime": "2021-02-28 18:59:56,784", - "created": 1614535196.7840042, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 39 63 62 38 31 31 38 36 62 62 35 63 62 34 61 36 33 66 62 62 35 37 31 30 35 66 38 33 62 61 31 39 31 37 64 36 62 65 66 66 62 34 64 30 35 34 39 63 35 32 31 63 34 65 31 64 64 35 34 39 22 7d 40 75", - "module": "__init__", - "msecs": 784.0042114257812, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5271.57187461853, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 39 63 62 38 31 31 38 36 62 62 35 63 62 34 61 36 33 66 62 62 35 37 31 30 35 66 38 33 62 61 31 39 31 37 64 36 62 65 66 66 62 34 64 30 35 34 39 63 35 32 31 63 34 65 31 64 64 35 34 39 22 7d 40 75" - ], - "asctime": "2021-02-28 18:59:56,792", - "created": 1614535196.792643, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 39 63 62 38 31 31 38 36 62 62 35 63 62 34 61 36 33 66 62 62 35 37 31 30 35 66 38 33 62 61 31 39 31 37 64 36 62 65 66 66 62 34 64 30 35 34 39 63 35 32 31 63 34 65 31 64 64 35 34 39 22 7d 40 75", - "module": "__init__", - "msecs": 792.6430702209473, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5280.210733413696, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-client:", - "(4): 98 4a 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,793", - "created": 1614535196.7934387, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (4): 98 4a 3a 3e", - "module": "__init__", - "msecs": 793.4386730194092, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5281.006336212158, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(4): 98 4a 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,794", - "created": 1614535196.7943456, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (4): 98 4a 3a 3e", - "module": "__init__", - "msecs": 794.3456172943115, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5281.913280487061, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,794", - "created": 1614535196.7946465, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 794.6465015411377, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5282.214164733887, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:56,794", - "created": 1614535196.7948463, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 794.8462963104248, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5282.413959503174, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 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 61 64 38 61 33 38 37 63 32 38 32 34 31 62 33 38 33 38 32 64 32 66 34 36 34 36 65 31 30 66 38 35 35 38 38 63 36 65 61 33 36 30 66 33 39 33 65 37 39 36 30 30 32 32 64 30 32 38 65 66 35 39 39 31 35 35 65 39 63 62 38 31 31 38 36 62 62 35 63 62 34 61 36 33 66 62 62 35 37 31 30 35 66 38 33 62 61 31 39 31 37 64 36 62 65 66 66 62 34 64 30 35 34 39 63 35 32 31 63 34 65 31 64 64 35 34 39 22 7d 40 75 98 4a" - ], - "asctime": "2021-02-28 18:59:56,795", - "created": 1614535196.7953365, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 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 61 64 38 61 33 38 37 63 32 38 32 34 31 62 33 38 33 38 32 64 32 66 34 36 34 36 65 31 30 66 38 35 35 38 38 63 36 65 61 33 36 30 66 33 39 33 65 37 39 36 30 30 32 32 64 30 32 38 65 66 35 39 39 31 35 35 65 39 63 62 38 31 31 38 36 62 62 35 63 62 34 61 36 33 66 62 62 35 37 31 30 35 66 38 33 62 61 31 39 31 37 64 36 62 65 66 66 62 34 64 30 35 34 39 63 35 32 31 63 34 65 31 64 64 35 34 39 22 7d 40 75 98 4a", - "module": "stp", - "msecs": 795.3364849090576, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5282.904148101807, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: key", - "status: okay", - "'8ad8a387c28241b38382d2f4646e10f85588c6ea360f393e7960022d028ef599155e9cb81186bb5cb4a63fbb57105f83ba1917d6beffb4d0549c521c4e1dd549'" - ], - "asctime": "2021-02-28 18:59:56,795", - "created": 1614535196.7958, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'8ad8a387c28241b38382d2f4646e10f85588c6ea360f393e7960022d028ef599155e9cb81186bb5cb4a63fbb57105f83ba1917d6beffb4d0549c521c4e1dd549'\"", - "module": "__init__", - "msecs": 795.799970626831, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5283.36763381958, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "__authentificate_check_key__" - ], - "asctime": "2021-02-28 18:59:56,796", - "created": 1614535196.7960699, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", - "module": "__init__", - "msecs": 796.069860458374, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5283.637523651123, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:56,796", - "created": 1614535196.796405, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 796.4050769805908, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5283.97274017334, - "stack_info": null, - "thread": 140380729239296, - "threadName": "Thread-7" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" - ], - "asctime": "2021-02-28 18:59:56,797", - "created": 1614535196.797339, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", - "module": "__init__", - "msecs": 797.3389625549316, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5284.906625747681, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" - ], - "asctime": "2021-02-28 18:59:56,806", - "created": 1614535196.8061626, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", - "module": "__init__", - "msecs": 806.1625957489014, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5293.73025894165, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,806", - "created": 1614535196.8065262, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 806.5261840820312, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5294.09384727478, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:56,806", - "created": 1614535196.8067029, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 806.7028522491455, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5294.2705154418945, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,806", - "created": 1614535196.8069065, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 806.9064617156982, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5294.474124908447, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,807", - "created": 1614535196.8070467, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 807.04665184021, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5294.614315032959, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,807", - "created": 1614535196.8072507, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 807.2507381439209, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5294.81840133667, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,807", - "created": 1614535196.8073795, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 807.3794841766357, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5294.947147369385, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,807", - "created": 1614535196.8075593, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 807.5592517852783, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5295.126914978027, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,807", - "created": 1614535196.8076863, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 807.6863288879395, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5295.2539920806885, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,807", - "created": 1614535196.8078594, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 807.8594207763672, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5295.427083969116, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:56,807", - "created": 1614535196.8079858, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 807.985782623291, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5295.55344581604, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-server:", - "(6): 94 fe 74 32 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,808", - "created": 1614535196.8082309, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", - "module": "__init__", - "msecs": 808.2308769226074, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5295.798540115356, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "comm-client:", - "(6): 94 fe 74 32 3a 3e" - ], - "asctime": "2021-02-28 18:59:56,809", - "created": 1614535196.80931, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", - "module": "__init__", - "msecs": 809.3099594116211, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5296.87762260437, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:56,809", - "created": 1614535196.8095884, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 809.5884323120117, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5297.156095504761, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:56,809", - "created": 1614535196.8098054, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 809.8053932189941, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5297.373056411743, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "STP:", - "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 74 72 75 65 7d 94 fe 74 32" - ], - "asctime": "2021-02-28 18:59:56,810", - "created": 1614535196.8100505, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 74 72 75 65 7d 94 fe 74 32", - "module": "stp", - "msecs": 810.0504875183105, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5297.61815071106, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:56,810", - "created": 1614535196.8104398, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 810.4398250579834, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5298.007488250732, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-02-28 18:59:56,810", - "created": 1614535196.810632, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 810.6319904327393, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5298.199653625488, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:56,810", - "created": 1614535196.8107817, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentificate_process_feedback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 372, - "message": "prot-client: Got positive authentification feedback", - "module": "__init__", - "msecs": 810.781717300415, - "msg": "%s Got positive authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5298.349380493164, - "stack_info": null, - "thread": 140380720846592, - "threadName": "Thread-8" - } - ], - "msecs": 42.56939888000488, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5530.137062072754, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.23178768157958984 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,043", - "created": 1614535197.0438123, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of server is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of server", - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,043", - "created": 1614535197.0433886, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of server): True ()", - "module": "test", - "msecs": 43.38860511779785, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5530.956268310547, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of server", - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,043", - "created": 1614535197.0436227, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of server): result = True ()", - "module": "test", - "msecs": 43.622732162475586, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5531.190395355225, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 43.81227493286133, - "msg": "Authentification state of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5531.37993812561, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001895427703857422 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,044", - "created": 1614535197.0444798, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Authentification state of client is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Authentification state of client", - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,044", - "created": 1614535197.044116, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Authentification state of client): True ()", - "module": "test", - "msecs": 44.11602020263672, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5531.683683395386, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Authentification state of client", - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,044", - "created": 1614535197.044304, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Authentification state of client): result = True ()", - "module": "test", - "msecs": 44.30389404296875, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5531.871557235718, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 44.4798469543457, - "msg": "Authentification state of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5532.047510147095, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00017595291137695312 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 2.7139945030212402, - "time_finished": "2021-02-28 18:59:57,044", - "time_start": "2021-02-28 18:59:54,330" - }, - "_7izDUEzYEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6362422, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 27, - "message": "_7izDUEzYEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 636.242151260376, - "msg": "_7izDUEzYEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 123.809814453125, - "stack_info": null, - "testcaseLogger": [ - { - "args": [ - "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.636348, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 10, - "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 636.3480091094971, - "msg": "Creating empty message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 123.9156723022461, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'service_id'" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.636508, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "service_id is part of the message object is correct ('service_id' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "service_id is part of the message object", - "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", - "" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6364233, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (service_id is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", - "module": "test", - "msecs": 636.4233493804932, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 123.99101257324219, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "service_id is part of the message object", - "'service_id'" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.636468, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (service_id is part of the message object): 'service_id' in result", - "module": "test", - "msecs": 636.4679336547852, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.03559684753418, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 636.5079879760742, - "msg": "service_id is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.07565116882324, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 - }, - { - "args": [ - "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6365864, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 636.5864276885986, - "msg": "Creating a maximum message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.15409088134766, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'service_id'" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6367402, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "service_id is part of the message object is correct ('service_id' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "service_id is part of the message object", - "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", - "" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6366563, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (service_id is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", - "module": "test", - "msecs": 636.6562843322754, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.22394752502441, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "service_id is part of the message object", - "'service_id'" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6366987, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (service_id is part of the message object): 'service_id' in result", - "module": "test", - "msecs": 636.6987228393555, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.26638603210449, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 636.7402076721191, - "msg": "service_id is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.30787086486816, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 4.1484832763671875e-05 - }, - { - "args": [ - "'SID'", - "" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6369, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Content in message object for service_id is correct (Content 'SID' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Content in message object for service_id", - "'SID'", - "" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6368117, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Content in message object for service_id): 'SID' ()", - "module": "test", - "msecs": 636.8117332458496, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.37939643859863, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Content in message object for service_id", - "'SID'", - "" - ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6368577, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Content in message object for service_id): result = 'SID' ()", - "module": "test", - "msecs": 636.8577480316162, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.42541122436523, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 636.8999481201172, - "msg": "Content in message object for service_id is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 124.46761131286621, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 4.220008850097656e-05 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0006577968597412109, - "time_finished": "2021-02-28 18:59:51,636", - "time_start": "2021-02-28 18:59:51,636" - }, - "_AlIUwEzZEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6378183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 29, - "message": "_AlIUwEzZEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 637.8183364868164, - "msg": "_AlIUwEzZEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.38599967956543, - "stack_info": null, - "testcaseLogger": [ - { - "args": [ - "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.637901, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 10, - "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 637.9010677337646, - "msg": "Creating empty message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.46873092651367, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'data'" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.638058, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "data is part of the message object is correct ('data' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "data is part of the message object", - "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", - "" - ], - "asctime": "2021-02-28 18:59:51,637", - "created": 1614535191.6379745, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (data is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", - "module": "test", - "msecs": 637.9745006561279, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.54216384887695, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "data is part of the message object", - "'data'" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.6380188, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (data is part of the message object): 'data' in result", - "module": "test", - "msecs": 638.0188465118408, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.58650970458984, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 638.0579471588135, - "msg": "data is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.6256103515625, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 - }, - { - "args": [ - "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.6381307, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 638.1306648254395, - "msg": "Creating a maximum message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.69832801818848, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'data'" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.6382818, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, - "message": "data is part of the message object is correct ('data' is in the list or dict).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "data is part of the message object", - "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", - "" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.6382012, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (data is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", - "module": "test", - "msecs": 638.2012367248535, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.76889991760254, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "data is part of the message object", - "'data'" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.6382434, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_inlist__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 30, - "message": "Expectation (data is part of the message object): 'data' in result", - "module": "test", - "msecs": 638.2434368133545, - "msg": "Expectation (%s): %s in result", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.81110000610352, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 638.2818222045898, - "msg": "data is part of the message object is correct (%s is in the list or dict).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.84948539733887, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 3.838539123535156e-05 - }, - { - "args": [ - "'D'", - "" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.638438, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Content in message object for data is correct (Content 'D' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Content in message object for data", - "'D'", - "" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.638351, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Content in message object for data): 'D' ()", - "module": "test", - "msecs": 638.3509635925293, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.91862678527832, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Content in message object for data", - "'D'", - "" - ], - "asctime": "2021-02-28 18:59:51,638", - "created": 1614535191.6383932, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Content in message object for data): result = 'D' ()", - "module": "test", - "msecs": 638.3931636810303, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 125.9608268737793, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 638.4379863739014, - "msg": "Content in message object for data is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 126.00564956665039, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 4.482269287109375e-05 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0006196498870849609, - "time_finished": "2021-02-28 18:59:51,638", - "time_start": "2021-02-28 18:59:51,637" - }, - "_CZeooE0YEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:59,028", - "created": 1614535199.028047, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 38, - "message": "_CZeooE0YEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 28.04708480834961, - "msg": "_CZeooE0YEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7515.614748001099, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:59,039", - "created": 1614535199.0391781, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:59,029", - "created": 1614535199.0297256, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 29.72555160522461, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7517.293214797974, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:59,031", - "created": 1614535199.0310073, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 31.00728988647461, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7518.574953079224, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:59,031", - "created": 1614535199.0313373, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 31.337261199951172, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7518.9049243927, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:59,031", - "created": 1614535199.031781, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 31.78095817565918, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7519.348621368408, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:59,032", - "created": 1614535199.0320456, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 32.045602798461914, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7519.613265991211, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:59,032", - "created": 1614535199.0323, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 32.29999542236328, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7519.867658615112, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:59,032", - "created": 1614535199.032486, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 32.4859619140625, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7520.0536251068115, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:59,032", - "created": 1614535199.0326557, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 32.65571594238281, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7520.223379135132, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:59,032", - "created": 1614535199.0328434, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 32.84335136413574, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7520.411014556885, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:59,033", - "created": 1614535199.0330272, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 33.02717208862305, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7520.594835281372, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:59,033", - "created": 1614535199.033212, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 33.21194648742676, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7520.779609680176, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:59,033", - "created": 1614535199.0333886, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 33.388614654541016, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7520.95627784729, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:59,033", - "created": 1614535199.0335715, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 33.571481704711914, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7521.139144897461, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:59,033", - "created": 1614535199.0337682, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 33.7681770324707, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7521.33584022522, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:59,033", - "created": 1614535199.0339506, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 33.9505672454834, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7521.518230438232, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:59,034", - "created": 1614535199.03414, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 34.14011001586914, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7521.707773208618, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:59,034", - "created": 1614535199.0343041, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 34.304141998291016, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7521.87180519104, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:59,034", - "created": 1614535199.0344746, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 34.47461128234863, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7522.042274475098, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:59,034", - "created": 1614535199.0346608, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 34.66081619262695, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7522.228479385376, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:59,034", - "created": 1614535199.034848, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 34.84797477722168, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7522.415637969971, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:59,035", - "created": 1614535199.03501, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 35.01009941101074, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7522.57776260376, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:59,035", - "created": 1614535199.0351794, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 35.17937660217285, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7522.747039794922, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:59,035", - "created": 1614535199.0353382, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 35.33816337585449, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7522.9058265686035, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:59,035", - "created": 1614535199.0356598, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 35.6597900390625, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7523.2274532318115, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:59,035", - "created": 1614535199.0358434, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 35.8433723449707, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7523.41103553772, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:59,036", - "created": 1614535199.0360668, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 36.06677055358887, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7523.634433746338, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:59,036", - "created": 1614535199.0362396, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 36.2396240234375, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7523.8072872161865, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:59,036", - "created": 1614535199.0364168, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 36.41676902770996, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7523.984432220459, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:59,036", - "created": 1614535199.0365813, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 36.58127784729004, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7524.148941040039, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:59,036", - "created": 1614535199.0367503, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 36.75031661987305, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7524.317979812622, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:59,036", - "created": 1614535199.0369506, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 36.95058822631836, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7524.518251419067, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:59,037", - "created": 1614535199.0371284, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 37.128448486328125, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7524.696111679077, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:59,037", - "created": 1614535199.0372999, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 37.29987144470215, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7524.867534637451, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:59,037", - "created": 1614535199.0374515, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 37.45150566101074, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7525.01916885376, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:59,037", - "created": 1614535199.037635, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 37.635087966918945, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7525.202751159668, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:59,037", - "created": 1614535199.0378458, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 37.84584999084473, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7525.413513183594, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:59,038", - "created": 1614535199.0380104, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 38.010358810424805, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7525.578022003174, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:59,038", - "created": 1614535199.0381765, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 38.176536560058594, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7525.744199752808, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:59,038", - "created": 1614535199.0383463, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 38.346290588378906, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7525.913953781128, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:59,038", - "created": 1614535199.0385256, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 38.52558135986328, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7526.093244552612, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:59,038", - "created": 1614535199.0386837, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 38.68365287780762, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7526.251316070557, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:59,038", - "created": 1614535199.0388494, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 38.8493537902832, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7526.417016983032, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:59,039", - "created": 1614535199.0390263, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 39.02626037597656, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7526.593923568726, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 39.17813301086426, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7526.745796203613, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001518726348876953 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:59,384", - "created": 1614535199.3847272, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:59,039", - "created": 1614535199.0395415, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 39.54148292541504, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7527.109146118164, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:59,039", - "created": 1614535199.0397472, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 39.74723815917969, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7527.314901351929, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:59,039", - "created": 1614535199.0399206, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 39.92056846618652, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7527.488231658936, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:59,040", - "created": 1614535199.0401976, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 40.19761085510254, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7527.765274047852, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:59,040", - "created": 1614535199.0408278, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 40.82775115966797, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7528.395414352417, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:59,041", - "created": 1614535199.0410225, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 41.022539138793945, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7528.590202331543, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:59,041", - "created": 1614535199.0411925, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 41.19253158569336, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7528.760194778442, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:59,041", - "created": 1614535199.0419862, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 41.98622703552246, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7529.5538902282715, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:59,050", - "created": 1614535199.0505533, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 50.553321838378906, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7538.120985031128, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,050", - "created": 1614535199.0508673, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 50.867319107055664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7538.434982299805, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:59,051", - "created": 1614535199.0510423, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 51.04231834411621, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7538.609981536865, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,051", - "created": 1614535199.0512521, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 51.252126693725586, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7538.819789886475, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:59,051", - "created": 1614535199.0514007, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 51.40066146850586, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7538.968324661255, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,051", - "created": 1614535199.051625, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 51.62501335144043, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7539.192676544189, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:59,051", - "created": 1614535199.0518165, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 51.816463470458984, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7539.384126663208, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,052", - "created": 1614535199.05202, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 52.02007293701172, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7539.587736129761, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:59,052", - "created": 1614535199.0521715, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 52.17146873474121, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7539.73913192749, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,052", - "created": 1614535199.0523713, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 52.37126350402832, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7539.938926696777, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:59,052", - "created": 1614535199.0525184, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 52.518367767333984, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7540.086030960083, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:59,052", - "created": 1614535199.0528083, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 52.808284759521484, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7540.3759479522705, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:59,053", - "created": 1614535199.0539324, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 53.93242835998535, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7541.500091552734, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,054", - "created": 1614535199.0543218, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 54.3217658996582, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7541.889429092407, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:59,054", - "created": 1614535199.0545094, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 54.50940132141113, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7542.07706451416, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 18:59:59,054", - "created": 1614535199.0547767, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 54.776668548583984, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7542.344331741333, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:59,055", - "created": 1614535199.0551822, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 55.18221855163574, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7542.749881744385, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:59,055", - "created": 1614535199.0553777, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 55.37772178649902, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7542.945384979248, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:59,055", - "created": 1614535199.0556479, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 55.647850036621094, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7543.21551322937, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:59,056", - "created": 1614535199.0564964, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 56.496381759643555, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7544.064044952393, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:59,065", - "created": 1614535199.065025, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 65.02509117126465, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7552.592754364014, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,065", - "created": 1614535199.0653467, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 65.34671783447266, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7552.914381027222, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:59,065", - "created": 1614535199.0655398, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 65.53983688354492, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7553.107500076294, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,065", - "created": 1614535199.0657976, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 65.79756736755371, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7553.365230560303, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:59,065", - "created": 1614535199.0659716, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 65.97161293029785, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7553.539276123047, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,066", - "created": 1614535199.0662837, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 66.2837028503418, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7553.851366043091, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:59,066", - "created": 1614535199.066453, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 66.4529800415039, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7554.020643234253, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,066", - "created": 1614535199.0666451, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 66.64514541625977, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7554.212808609009, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:59,066", - "created": 1614535199.0667827, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 66.78271293640137, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7554.35037612915, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,066", - "created": 1614535199.066961, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 66.96105003356934, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7554.528713226318, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:59,067", - "created": 1614535199.0671275, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 67.12746620178223, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7554.695129394531, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:59,067", - "created": 1614535199.0674586, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 67.4586296081543, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7555.026292800903, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:59,068", - "created": 1614535199.0686185, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 68.6185359954834, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7556.186199188232, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:59,068", - "created": 1614535199.0689604, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 68.96042823791504, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7556.528091430664, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:59,069", - "created": 1614535199.0691495, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 69.14949417114258, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7556.717157363892, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 18:59:59,069", - "created": 1614535199.0694017, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 69.40174102783203, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7556.969404220581, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:59,069", - "created": 1614535199.0698588, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 69.85878944396973, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7557.426452636719, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:59,070", - "created": 1614535199.0701268, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 70.12677192687988, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7557.694435119629, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - } - ], - "msecs": 384.72723960876465, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7872.294902801514, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.31460046768188477 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:59,385", - "created": 1614535199.385355, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 201, - "message": "Identical secrets set", - "module": "test_communication", - "moduleLogger": [], - "msecs": 385.35499572753906, - "msg": "Identical secrets set", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7872.922658920288, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:59,687", - "created": 1614535199.687803, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 204, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:59,385", - "created": 1614535199.3858304, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 385.8304023742676, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7873.398065567017, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "0.28705533596837945", - "17", - "34" - ], - "asctime": "2021-02-28 18:59:59,687", - "created": 1614535199.687298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", - "module": "__init__", - "msecs": 687.298059463501, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8174.86572265625, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 687.8030300140381, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8175.370693206787, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0005049705505371094 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:59,688", - "created": 1614535199.688979, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:59,688", - "created": 1614535199.6883514, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): False ()", - "module": "test", - "msecs": 688.3513927459717, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8175.919055938721, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:59,688", - "created": 1614535199.6886716, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = False ()", - "module": "test", - "msecs": 688.6715888977051, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8176.239252090454, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 688.978910446167, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8176.546573638916, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00030732154846191406 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:59,689", - "created": 1614535199.6899073, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:59,689", - "created": 1614535199.6894436, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): None ()", - "module": "test", - "msecs": 689.4435882568359, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8177.011251449585, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:59,689", - "created": 1614535199.6897163, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = None ()", - "module": "test", - "msecs": 689.7163391113281, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8177.284002304077, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 689.9073123931885, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8177.4749755859375, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00019097328186035156 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:59,992", - "created": 1614535199.9920878, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 210, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:59,690", - "created": 1614535199.69031, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 690.310001373291, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8177.87766456604, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:59,991", - "created": 1614535199.9917126, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 991.7125701904297, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8479.280233383179, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 992.0878410339355, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8479.655504226685, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0003752708435058594 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:59,992", - "created": 1614535199.9929466, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:59,992", - "created": 1614535199.9924972, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): False ()", - "module": "test", - "msecs": 992.4972057342529, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8480.064868927002, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:59,992", - "created": 1614535199.9927177, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = False ()", - "module": "test", - "msecs": 992.7177429199219, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8480.28540611267, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 992.9466247558594, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8480.514287948608, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002288818359375 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:59,993", - "created": 1614535199.993608, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:59,993", - "created": 1614535199.993247, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 993.2470321655273, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8480.814695358276, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:59,993", - "created": 1614535199.9934313, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 993.4313297271729, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8480.998992919922, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 993.6079978942871, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8481.175661087036, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001766681671142578 - }, - { - "args": [ - 17, - 34 - ], - "asctime": "2021-02-28 18:59:59,994", - "created": 1614535199.9942102, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 215, - "message": "Added msg1 to client whitelist (sid=17, did=34)", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "service: 17, data_id: 34" - ], - "asctime": "2021-02-28 18:59:59,993", - "created": 1614535199.993999, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", - "module": "__init__", - "msecs": 993.9990043640137, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8481.566667556763, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 994.2102432250977, - "msg": "Added msg1 to client whitelist (sid=%d, did=%d)", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8481.777906417847, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00021123886108398438 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:00,296", - "created": 1614535200.2969124, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 218, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:59,994", - "created": 1614535199.9945915, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 994.591474533081, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8482.15913772583, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:59,995", - "created": 1614535199.995646, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 995.6459999084473, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8483.213663101196, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 19:00:00,004", - "created": 1614535200.0041687, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 4.16874885559082, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8491.73641204834, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,004", - "created": 1614535200.0045238, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 4.523754119873047, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8492.091417312622, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:00,004", - "created": 1614535200.004721, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 4.720926284790039, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8492.288589477539, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,004", - "created": 1614535200.0049553, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 4.955291748046875, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8492.522954940796, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:00,005", - "created": 1614535200.0051734, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 5.173444747924805, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8492.741107940674, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,005", - "created": 1614535200.0054157, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 5.415678024291992, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8492.983341217041, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:00,005", - "created": 1614535200.0055673, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 5.567312240600586, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8493.13497543335, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,005", - "created": 1614535200.0058222, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 5.822181701660156, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8493.38984489441, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:00,006", - "created": 1614535200.006003, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 6.002902984619141, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8493.570566177368, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,006", - "created": 1614535200.006215, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 6.215095520019531, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8493.782758712769, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:00,006", - "created": 1614535200.0063672, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 6.367206573486328, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8493.934869766235, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-client:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 19:00:00,006", - "created": 1614535200.006711, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 6.711006164550781, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8494.2786693573, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 19:00:00,011", - "created": 1614535200.0111403, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 11.14034652709961, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8498.708009719849, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,011", - "created": 1614535200.0116475, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 11.647462844848633, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8499.215126037598, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:00,011", - "created": 1614535200.011895, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 11.894941329956055, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8499.462604522705, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" - ], - "asctime": "2021-02-28 19:00:00,012", - "created": 1614535200.0122561, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "stp", - "msecs": 12.256145477294922, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8499.823808670044, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:00,012", - "created": 1614535200.0128088, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 12.808799743652344, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8500.376462936401, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:00,013", - "created": 1614535200.0130665, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 475, - "message": "prot-server: Authentification is required. Incomming message will be ignored.", - "module": "__init__", - "msecs": 13.066530227661133, - "msg": "%s Authentification is required. Incomming message will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8500.63419342041, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "0.28705533596837945", - "17", - "34" - ], - "asctime": "2021-02-28 19:00:00,296", - "created": 1614535200.296537, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", - "module": "__init__", - "msecs": 296.536922454834, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8784.104585647583, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 296.91243171691895, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8784.480094909668, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00037550926208496094 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:00,297", - "created": 1614535200.2978797, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 19:00:00,297", - "created": 1614535200.297399, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 297.39904403686523, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8784.966707229614, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 19:00:00,297", - "created": 1614535200.2976277, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 297.62768745422363, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8785.195350646973, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 297.879695892334, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8785.447359085083, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00025200843811035156 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 19:00:00,298", - "created": 1614535200.2985487, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 19:00:00,298", - "created": 1614535200.298186, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): None ()", - "module": "test", - "msecs": 298.1860637664795, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8785.753726959229, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 19:00:00,298", - "created": 1614535200.2983735, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = None ()", - "module": "test", - "msecs": 298.3734607696533, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8785.941123962402, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 298.54869842529297, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8786.116361618042, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00017523765563964844 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:00,601", - "created": 1614535200.6010096, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 224, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:00,298", - "created": 1614535200.2989218, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 298.9218235015869, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 8786.489486694336, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 19:00:00,600", - "created": 1614535200.600603, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 600.6031036376953, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9088.170766830444, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 601.0096073150635, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9088.577270507812, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00040650367736816406 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:00,601", - "created": 1614535200.6019034, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 19:00:00,601", - "created": 1614535200.6014354, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): False ()", - "module": "test", - "msecs": 601.4354228973389, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9089.003086090088, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 19:00:00,601", - "created": 1614535200.601696, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = False ()", - "module": "test", - "msecs": 601.6960144042969, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9089.263677597046, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 601.9034385681152, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9089.471101760864, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00020742416381835938 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 19:00:00,602", - "created": 1614535200.6026008, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 19:00:00,602", - "created": 1614535200.6022336, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 602.2336483001709, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9089.80131149292, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 19:00:00,602", - "created": 1614535200.6024256, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 602.4255752563477, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9089.993238449097, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 602.6008129119873, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9090.168476104736, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00017523765563964844 - }, - { - "args": [ - 17, - 34 - ], - "asctime": "2021-02-28 19:00:00,603", - "created": 1614535200.6031208, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 229, - "message": "Added msg1 to server whitelist (sid=17, did=34)", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 34" - ], - "asctime": "2021-02-28 19:00:00,602", - "created": 1614535200.602932, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", - "module": "__init__", - "msecs": 602.9319763183594, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9090.499639511108, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 603.1208038330078, - "msg": "Added msg1 to server whitelist (sid=%d, did=%d)", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9090.688467025757, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001888275146484375 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:00,805", - "created": 1614535200.805995, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 232, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:00,604", - "created": 1614535200.604083, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 604.0830612182617, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9091.65072441101, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 19:00:00,605", - "created": 1614535200.6058035, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 605.8034896850586, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9093.371152877808, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 19:00:00,614", - "created": 1614535200.6144328, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 614.4328117370605, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9102.00047492981, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,614", - "created": 1614535200.6148503, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 614.8502826690674, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9102.417945861816, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:00,615", - "created": 1614535200.6150887, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 615.088701248169, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9102.656364440918, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,615", - "created": 1614535200.6153524, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 615.3523921966553, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9102.920055389404, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:00,615", - "created": 1614535200.6155555, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 615.5555248260498, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9103.123188018799, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,615", - "created": 1614535200.615853, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 615.8530712127686, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9103.420734405518, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:00,616", - "created": 1614535200.6160288, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 616.0287857055664, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9103.596448898315, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,616", - "created": 1614535200.6162808, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 616.2807941436768, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9103.848457336426, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:00,616", - "created": 1614535200.6164541, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 616.4541244506836, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9104.021787643433, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,616", - "created": 1614535200.6166828, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 616.682767868042, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9104.250431060791, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:00,616", - "created": 1614535200.6168518, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 616.851806640625, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9104.419469833374, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-client:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 19:00:00,617", - "created": 1614535200.6172168, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 617.2168254852295, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9104.784488677979, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 19:00:00,621", - "created": 1614535200.6217322, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 621.732234954834, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9109.299898147583, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:00,622", - "created": 1614535200.622275, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 622.2751140594482, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9109.842777252197, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:00,622", - "created": 1614535200.6224906, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 622.490644454956, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9110.058307647705, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" - ], - "asctime": "2021-02-28 19:00:00,622", - "created": 1614535200.6228485, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "stp", - "msecs": 622.8485107421875, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9110.416173934937, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:00,623", - "created": 1614535200.623323, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 623.3229637145996, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9110.890626907349, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:00,623", - "created": 1614535200.6236196, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 623.619556427002, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9111.187219619751, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - } - ], - "msecs": 805.994987487793, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9293.562650680542, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.18237543106079102 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:00,807", - "created": 1614535200.8070471, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 19:00:00,806", - "created": 1614535200.8065944, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 806.5943717956543, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9294.162034988403, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 19:00:00,806", - "created": 1614535200.8068392, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 806.8392276763916, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9294.40689086914, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 807.0471286773682, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9294.614791870117, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002079010009765625 - }, - { - "args": [ - "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:00,807", - "created": 1614535200.8077643, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:00,807", - "created": 1614535200.807369, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", - "module": "test", - "msecs": 807.3689937591553, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9294.936656951904, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:00,807", - "created": 1614535200.807571, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", - "module": "test", - "msecs": 807.5709342956543, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9295.138597488403, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 807.7642917633057, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9295.331954956055, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001933574676513672 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:01,110", - "created": 1614535201.1104724, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 238, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:00,808", - "created": 1614535200.808178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 808.1779479980469, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9295.745611190796, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 19:00:01,110", - "created": 1614535201.1101003, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 110.10026931762695, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9597.667932510376, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 110.47244071960449, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9598.040103912354, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00037217140197753906 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:01,111", - "created": 1614535201.111329, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 19:00:01,110", - "created": 1614535201.110916, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): False ()", - "module": "test", - "msecs": 110.9158992767334, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9598.483562469482, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 19:00:01,111", - "created": 1614535201.111134, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = False ()", - "module": "test", - "msecs": 111.13405227661133, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9598.70171546936, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 111.3290786743164, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9598.896741867065, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00019502639770507812 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,112", - "created": 1614535201.112004, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,111", - "created": 1614535201.111628, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 111.62805557250977, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9599.195718765259, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,111", - "created": 1614535201.1118262, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 111.82618141174316, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9599.393844604492, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 112.00404167175293, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9599.571704864502, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00017786026000976562 - }, - { - "args": [ - 17, - 35 - ], - "asctime": "2021-02-28 19:00:01,112", - "created": 1614535201.1127262, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 244, - "message": "Added msg2 to client and server whitelist (sid=17, did=35)", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "service: 17, data_id: 35" - ], - "asctime": "2021-02-28 19:00:01,112", - "created": 1614535201.112326, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", - "module": "__init__", - "msecs": 112.32590675354004, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9599.893569946289, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: 17, data_id: 35" - ], - "asctime": "2021-02-28 19:00:01,112", - "created": 1614535201.1125526, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", - "module": "__init__", - "msecs": 112.55264282226562, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9600.120306015015, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 112.72621154785156, - "msg": "Added msg2 to client and server whitelist (sid=%d, did=%d)", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9600.2938747406, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001735687255859375 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:01,314", - "created": 1614535201.3148074, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 247, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:01,113", - "created": 1614535201.1131566, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 113.15655708312988, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9600.724220275879, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 19:00:01,114", - "created": 1614535201.1143746, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 114.37463760375977, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9601.942300796509, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 19:00:01,122", - "created": 1614535201.1229558, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 122.9557991027832, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9610.523462295532, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,123", - "created": 1614535201.1233847, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 123.38471412658691, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9610.952377319336, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:01,123", - "created": 1614535201.1236727, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 123.6727237701416, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9611.24038696289, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,123", - "created": 1614535201.123958, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 123.95811080932617, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9611.525774002075, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,124", - "created": 1614535201.1241474, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 124.14741516113281, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9611.715078353882, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,124", - "created": 1614535201.1244116, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 124.41158294677734, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9611.979246139526, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,124", - "created": 1614535201.124608, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 124.60803985595703, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9612.175703048706, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,124", - "created": 1614535201.1248515, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 124.85146522521973, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9612.419128417969, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,125", - "created": 1614535201.1250103, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 125.01025199890137, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9612.57791519165, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,125", - "created": 1614535201.1252139, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 125.2138614654541, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9612.781524658203, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,125", - "created": 1614535201.1254144, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 125.41437149047852, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9612.982034683228, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-client:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,125", - "created": 1614535201.1257944, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 125.7944107055664, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9613.362073898315, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "comm-server:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,130", - "created": 1614535201.1301894, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 130.1894187927246, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9617.757081985474, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,130", - "created": 1614535201.1306384, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 130.63836097717285, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9618.206024169922, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:01,130", - "created": 1614535201.130865, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 130.86509704589844, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9618.432760238647, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" - ], - "asctime": "2021-02-28 19:00:01,131", - "created": 1614535201.131216, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "stp", - "msecs": 131.21604919433594, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9618.783712387085, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:01,131", - "created": 1614535201.1316879, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 131.68787956237793, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9619.255542755127, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:01,131", - "created": 1614535201.1319475, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 131.94751739501953, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9619.515180587769, - "stack_info": null, - "thread": 140380695668480, - "threadName": "Thread-11" - } - ], - "msecs": 314.8074150085449, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9802.375078201294, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.1828598976135254 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:01,315", - "created": 1614535201.315866, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 19:00:01,315", - "created": 1614535201.3154109, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 315.410852432251, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9802.978515625, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 19:00:01,315", - "created": 1614535201.315655, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 315.654993057251, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9803.22265625, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 315.86599349975586, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9803.433656692505, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002110004425048828 - }, - { - "args": [ - "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:01,316", - "created": 1614535201.3166654, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:01,316", - "created": 1614535201.3162289, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", - "module": "test", - "msecs": 316.22886657714844, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9803.796529769897, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:01,316", - "created": 1614535201.3164346, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", - "module": "test", - "msecs": 316.4346218109131, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9804.002285003662, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 316.6654109954834, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9804.233074188232, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002307891845703125 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:01,518", - "created": 1614535201.5187783, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "auth_whitelist_communication", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 253, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:01,317", - "created": 1614535201.3171232, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 450, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 317.1231746673584, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9804.690837860107, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 19:00:01,318", - "created": 1614535201.3183248, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 318.3248043060303, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9805.89246749878, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 19:00:01,327", - "created": 1614535201.327066, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 327.06594467163086, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9814.63360786438, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,327", - "created": 1614535201.327473, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 327.4729251861572, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9815.040588378906, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:01,327", - "created": 1614535201.3277, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 327.6998996734619, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9815.267562866211, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,327", - "created": 1614535201.3279948, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 327.99482345581055, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9815.56248664856, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,328", - "created": 1614535201.328206, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 328.20606231689453, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9815.773725509644, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,328", - "created": 1614535201.3284862, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 328.48620414733887, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9816.053867340088, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,328", - "created": 1614535201.3286576, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 328.6576271057129, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9816.225290298462, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,328", - "created": 1614535201.3289313, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 328.9313316345215, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9816.49899482727, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,329", - "created": 1614535201.3291042, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 329.1041851043701, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9816.67184829712, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,329", - "created": 1614535201.329329, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 329.3290138244629, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9816.896677017212, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,329", - "created": 1614535201.3294919, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 329.49185371398926, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9817.059516906738, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-server:", - "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,329", - "created": 1614535201.3299134, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", - "module": "__init__", - "msecs": 329.9133777618408, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9817.48104095459, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "comm-client:", - "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,334", - "created": 1614535201.3344054, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", - "module": "__init__", - "msecs": 334.40542221069336, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9821.973085403442, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,334", - "created": 1614535201.3349378, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 334.93781089782715, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9822.505474090576, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:01,335", - "created": 1614535201.3351412, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 335.1411819458008, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9822.70884513855, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" - ], - "asctime": "2021-02-28 19:00:01,335", - "created": 1614535201.3354676, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "stp", - "msecs": 335.4675769805908, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9823.03524017334, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 19:00:01,335", - "created": 1614535201.3359606, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 450, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 335.96062660217285, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9823.528289794922, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:01,336", - "created": 1614535201.3362248, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 336.2247943878174, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 9823.792457580566, - "stack_info": null, - "thread": 140380687275776, - "threadName": "Thread-12" - } - ], - "msecs": 518.7783241271973, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10006.345987319946, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.18255352973937988 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:01,519", - "created": 1614535201.5197597, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 19:00:01,519", - "created": 1614535201.5193586, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 519.3586349487305, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10006.92629814148, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 19:00:01,519", - "created": 1614535201.5195758, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 519.575834274292, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10007.143497467041, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 519.7596549987793, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10007.327318191528, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001838207244873047 - }, - { - "args": [ - "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:01,520", - "created": 1614535201.5203981, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:01,520", - "created": 1614535201.520048, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", - "module": "test", - "msecs": 520.0479030609131, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10007.615566253662, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 19:00:01,520", - "created": 1614535201.5202296, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", - "module": "test", - "msecs": 520.2295780181885, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10007.797241210938, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 520.3981399536133, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10007.965803146362, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001685619354248047 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 2.4923510551452637, - "time_finished": "2021-02-28 19:00:01,520", - "time_start": "2021-02-28 18:59:59,028" - }, - "_Lmn-kE0hEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 19:00:01,521", - "created": 1614535201.5212862, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 39, - "message": "_Lmn-kE0hEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 521.2862491607666, - "msg": "_Lmn-kE0hEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10008.853912353516, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 19:00:01,531", - "created": 1614535201.5318694, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:01,522", - "created": 1614535201.52274, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 522.7398872375488, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10010.307550430298, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:01,523", - "created": 1614535201.5239322, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 523.9322185516357, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10011.499881744385, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:01,524", - "created": 1614535201.5242271, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 524.2271423339844, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10011.794805526733, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:01,524", - "created": 1614535201.5246217, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 524.6217250823975, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10012.189388275146, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:01,524", - "created": 1614535201.5248399, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 524.8398780822754, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10012.407541275024, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:01,525", - "created": 1614535201.5250978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 525.0978469848633, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10012.665510177612, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:01,525", - "created": 1614535201.5252805, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 525.2804756164551, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10012.848138809204, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:01,525", - "created": 1614535201.525476, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 525.4759788513184, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10013.043642044067, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:01,525", - "created": 1614535201.525639, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 525.6390571594238, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10013.206720352173, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:01,525", - "created": 1614535201.5258667, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 525.8667469024658, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10013.434410095215, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:01,526", - "created": 1614535201.5260575, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 526.0574817657471, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10013.625144958496, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:01,526", - "created": 1614535201.5262372, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 526.2372493743896, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10013.804912567139, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:01,526", - "created": 1614535201.5264082, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 526.4081954956055, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10013.975858688354, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:01,526", - "created": 1614535201.526559, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 526.5591144561768, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10014.126777648926, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:01,526", - "created": 1614535201.5267317, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 526.7317295074463, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10014.299392700195, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:01,526", - "created": 1614535201.5269177, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 526.9176959991455, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10014.485359191895, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:01,527", - "created": 1614535201.5270822, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 527.0822048187256, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10014.649868011475, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:01,527", - "created": 1614535201.5272663, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 527.266263961792, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10014.833927154541, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:01,527", - "created": 1614535201.5274448, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 527.4448394775391, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10015.012502670288, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:01,527", - "created": 1614535201.5276134, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 527.6134014129639, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10015.181064605713, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:01,527", - "created": 1614535201.5277963, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 527.7962684631348, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10015.363931655884, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:01,527", - "created": 1614535201.5279524, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 527.9524326324463, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10015.520095825195, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:01,528", - "created": 1614535201.5281398, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 528.1398296356201, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10015.70749282837, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:01,528", - "created": 1614535201.5284665, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 528.4664630889893, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10016.034126281738, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:01,528", - "created": 1614535201.5286472, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 528.6471843719482, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10016.214847564697, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:01,528", - "created": 1614535201.52887, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 528.8701057434082, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10016.437768936157, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:01,529", - "created": 1614535201.529042, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 529.0420055389404, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10016.60966873169, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:01,529", - "created": 1614535201.52922, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 529.2201042175293, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10016.787767410278, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:01,529", - "created": 1614535201.5293841, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 529.3841361999512, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10016.9517993927, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:01,529", - "created": 1614535201.529554, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 529.5538902282715, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10017.12155342102, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:01,529", - "created": 1614535201.529754, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 529.7539234161377, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10017.321586608887, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:01,529", - "created": 1614535201.5299444, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 529.9444198608398, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10017.512083053589, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:01,530", - "created": 1614535201.5301297, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 530.1296710968018, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10017.69733428955, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:01,530", - "created": 1614535201.5302846, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 530.2846431732178, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10017.852306365967, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:01,530", - "created": 1614535201.5304565, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 530.45654296875, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10018.024206161499, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:01,530", - "created": 1614535201.5306537, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 530.653715133667, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10018.221378326416, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:01,530", - "created": 1614535201.530829, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 530.8289527893066, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10018.396615982056, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:01,531", - "created": 1614535201.5310001, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 531.0001373291016, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10018.56780052185, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:01,531", - "created": 1614535201.5311782, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 531.1782360076904, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10018.74589920044, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:01,531", - "created": 1614535201.5313203, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 531.320333480835, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10018.887996673584, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:01,531", - "created": 1614535201.5314546, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 531.4545631408691, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10019.022226333618, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:01,531", - "created": 1614535201.5316017, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 531.6016674041748, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10019.169330596924, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:01,531", - "created": 1614535201.5317414, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 531.7413806915283, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10019.309043884277, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 531.8694114685059, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10019.437074661255, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00012803077697753906 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:01,877", - "created": 1614535201.8770242, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:01,532", - "created": 1614535201.5321622, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 532.1621894836426, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10019.729852676392, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:01,532", - "created": 1614535201.5323086, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 532.3085784912109, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10019.87624168396, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:01,532", - "created": 1614535201.5324452, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 532.4451923370361, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10020.012855529785, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:01,532", - "created": 1614535201.5326977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 532.6976776123047, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10020.265340805054, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:01,533", - "created": 1614535201.533261, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 533.2610607147217, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10020.82872390747, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:01,533", - "created": 1614535201.5334275, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 533.4274768829346, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10020.995140075684, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:01,533", - "created": 1614535201.53357, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 533.5700511932373, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10021.137714385986, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:01,534", - "created": 1614535201.5340219, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 534.0218544006348, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10021.589517593384, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:01,542", - "created": 1614535201.542559, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 542.5589084625244, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10030.126571655273, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,542", - "created": 1614535201.542868, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 542.86789894104, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10030.435562133789, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:01,543", - "created": 1614535201.5430405, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 543.0405139923096, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10030.608177185059, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,543", - "created": 1614535201.5432487, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 543.2486534118652, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10030.816316604614, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,543", - "created": 1614535201.5433936, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 543.393611907959, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10030.961275100708, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,543", - "created": 1614535201.5436237, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 543.623685836792, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10031.191349029541, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,543", - "created": 1614535201.5438077, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 543.8077449798584, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10031.375408172607, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,544", - "created": 1614535201.5440185, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 544.0185070037842, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10031.586170196533, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,544", - "created": 1614535201.5441742, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 544.1741943359375, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10031.741857528687, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,544", - "created": 1614535201.5443635, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 544.3634986877441, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10031.931161880493, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,544", - "created": 1614535201.5445023, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 544.5022583007812, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10032.06992149353, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,544", - "created": 1614535201.5448008, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 544.8007583618164, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10032.368421554565, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,545", - "created": 1614535201.545887, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 545.8869934082031, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10033.454656600952, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,546", - "created": 1614535201.5462, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 546.2000370025635, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10033.767700195312, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:01,546", - "created": 1614535201.5463912, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 546.3912487030029, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10033.958911895752, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:01,546", - "created": 1614535201.546634, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 546.6339588165283, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10034.201622009277, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:01,547", - "created": 1614535201.5470335, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 547.0335483551025, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10034.601211547852, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:01,547", - "created": 1614535201.5472236, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 547.2235679626465, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10034.791231155396, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:01,547", - "created": 1614535201.547494, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 547.4939346313477, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10035.061597824097, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:01,548", - "created": 1614535201.5483184, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 548.3183860778809, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10035.88604927063, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:01,556", - "created": 1614535201.5568442, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 556.8442344665527, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10044.411897659302, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,557", - "created": 1614535201.5571463, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 557.1463108062744, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10044.713973999023, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:01,557", - "created": 1614535201.5573134, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 557.3134422302246, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10044.881105422974, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,557", - "created": 1614535201.5575123, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 557.5122833251953, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10045.079946517944, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,557", - "created": 1614535201.557678, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 557.6779842376709, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10045.24564743042, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,557", - "created": 1614535201.5579023, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 557.9023361206055, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10045.469999313354, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,558", - "created": 1614535201.5580392, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 558.0391883850098, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10045.606851577759, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,558", - "created": 1614535201.5582323, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 558.232307434082, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10045.799970626831, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,558", - "created": 1614535201.5584228, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 558.4228038787842, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10045.990467071533, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,558", - "created": 1614535201.5586114, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 558.6113929748535, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10046.179056167603, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,558", - "created": 1614535201.5587535, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 558.753490447998, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10046.321153640747, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,559", - "created": 1614535201.559027, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 559.0269565582275, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10046.594619750977, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,560", - "created": 1614535201.5601552, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 560.1551532745361, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10047.722816467285, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,560", - "created": 1614535201.5604625, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 560.462474822998, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10048.030138015747, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:01,560", - "created": 1614535201.5606394, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 560.6393814086914, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10048.20704460144, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:01,560", - "created": 1614535201.560949, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 560.9490871429443, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10048.516750335693, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:01,561", - "created": 1614535201.5614178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 561.417818069458, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10048.985481262207, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:01,561", - "created": 1614535201.561644, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 561.6440773010254, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10049.211740493774, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - } - ], - "msecs": 877.0241737365723, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10364.591836929321, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.3153800964355469 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:01,877", - "created": 1614535201.8776, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 261, - "message": "Setting no Channel name for server and client", - "module": "test_communication", - "moduleLogger": [], - "msecs": 877.5999546051025, - "msg": "Setting no Channel name for server and client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10365.167617797852, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,878", - "created": 1614535201.8784418, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,878", - "created": 1614535201.8780556, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): None ()", - "module": "test", - "msecs": 878.0555725097656, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10365.623235702515, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,878", - "created": 1614535201.878261, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = None ()", - "module": "test", - "msecs": 878.2610893249512, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10365.8287525177, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 878.4418106079102, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10366.00947380066, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00018072128295898438 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,879", - "created": 1614535201.8791118, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,878", - "created": 1614535201.8787525, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): None ()", - "module": "test", - "msecs": 878.7524700164795, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10366.320133209229, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "None", - "" - ], - "asctime": "2021-02-28 19:00:01,878", - "created": 1614535201.8789392, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = None ()", - "module": "test", - "msecs": 878.939151763916, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10366.506814956665, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 879.1117668151855, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10366.679430007935, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00017261505126953125 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:01,879", - "created": 1614535201.8796442, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 267, - "message": "Setting different Channel names for client and Server", - "module": "test_communication", - "moduleLogger": [], - "msecs": 879.6441555023193, - "msg": "Setting different Channel names for client and Server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10367.211818695068, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:02,225", - "created": 1614535202.225972, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 271, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:01,879", - "created": 1614535201.8799288, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 879.9288272857666, - "msg": "%s Connection Lost...", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10367.496490478516, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:01,880", - "created": 1614535201.8801606, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 880.1605701446533, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10367.728233337402, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:01,880", - "created": 1614535201.8803508, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 880.3508281707764, - "msg": "%s Connection Lost...", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10367.918491363525, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:01,880", - "created": 1614535201.8805234, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 880.5234432220459, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10368.091106414795, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:01,880", - "created": 1614535201.880691, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 880.6910514831543, - "msg": "%s Connection established...", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10368.258714675903, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:01,880", - "created": 1614535201.8808637, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 880.8636665344238, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10368.431329727173, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:01,881", - "created": 1614535201.881037, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 881.0369968414307, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10368.60466003418, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-02-28 19:00:01,881", - "created": 1614535201.8813279, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 881.3278675079346, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10368.895530700684, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:01,882", - "created": 1614535201.882059, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 882.0590972900391, - "msg": "%s Connection established...", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10369.626760482788, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:01,882", - "created": 1614535201.882304, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 882.3039531707764, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10369.871616363525, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:01,882", - "created": 1614535201.882494, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 882.4939727783203, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10370.06163597107, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" - ], - "asctime": "2021-02-28 19:00:01,883", - "created": 1614535201.8831158, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", - "module": "__init__", - "msecs": 883.1157684326172, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10370.683431625366, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" - ], - "asctime": "2021-02-28 19:00:01,891", - "created": 1614535201.8916502, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", - "module": "__init__", - "msecs": 891.6501998901367, - "msg": "%s RX <- %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10379.217863082886, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,892", - "created": 1614535201.8920026, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 892.0025825500488, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10379.570245742798, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:01,892", - "created": 1614535201.8921986, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 892.1985626220703, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10379.76622581482, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,892", - "created": 1614535201.8924263, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 892.4262523651123, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10379.993915557861, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,892", - "created": 1614535201.8925877, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 892.5876617431641, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10380.155324935913, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,892", - "created": 1614535201.8928258, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 892.8258419036865, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10380.393505096436, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,892", - "created": 1614535201.892975, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 892.9750919342041, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10380.542755126953, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,893", - "created": 1614535201.893186, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 893.186092376709, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10380.753755569458, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,893", - "created": 1614535201.893367, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 893.3670520782471, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10380.934715270996, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,893", - "created": 1614535201.8935676, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 893.5675621032715, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10381.13522529602, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,893", - "created": 1614535201.8937569, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 893.7568664550781, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10381.324529647827, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,894", - "created": 1614535201.8940616, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (10): 6e 74 22 7d ee af 7b 7e 3a 3e", - "module": "__init__", - "msecs": 894.0615653991699, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10381.629228591919, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,895", - "created": 1614535201.8956985, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (10): 6e 74 22 7d ee af 7b 7e 3a 3e", - "module": "__init__", - "msecs": 895.6985473632812, - "msg": "%s RX <- %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10383.26621055603, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,896", - "created": 1614535201.8960333, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 896.0332870483398, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10383.600950241089, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:01,896", - "created": 1614535201.8962345, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 896.2345123291016, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10383.80217552185, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(66): 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 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e" - ], - "asctime": "2021-02-28 19:00:01,896", - "created": 1614535201.896516, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (66): 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 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "module": "stp", - "msecs": 896.5160846710205, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10384.08374786377, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-02-28 19:00:01,896", - "created": 1614535201.8969514, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 896.95143699646, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10384.519100189209, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:01,897", - "created": 1614535201.897166, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 897.1660137176514, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10384.7336769104, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "'server'", - "'client'" - ], - "asctime": "2021-02-28 19:00:01,897", - "created": 1614535201.8978512, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__channel_name_request__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 430, - "message": "prot-server: overwriting user defined channel name from 'server' to 'client'", - "module": "__init__", - "msecs": 897.8512287139893, - "msg": "%s overwriting user defined channel name from %s to %s", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10385.418891906738, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:01,898", - "created": 1614535201.898119, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 898.1189727783203, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10385.68663597107, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:01,898", - "created": 1614535201.8989272, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 898.9272117614746, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10386.494874954224, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:01,907", - "created": 1614535201.9074638, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 907.463788986206, - "msg": "%s RX <- %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10395.031452178955, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,907", - "created": 1614535201.907775, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 907.7749252319336, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10395.342588424683, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:01,907", - "created": 1614535201.907944, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 907.9439640045166, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10395.511627197266, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,908", - "created": 1614535201.9081526, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 908.1525802612305, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10395.72024345398, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,908", - "created": 1614535201.9083223, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 908.3223342895508, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10395.8899974823, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,908", - "created": 1614535201.9085302, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 908.5302352905273, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10396.097898483276, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,908", - "created": 1614535201.9086592, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 908.6592197418213, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10396.22688293457, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,908", - "created": 1614535201.9088378, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 908.8377952575684, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10396.405458450317, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,908", - "created": 1614535201.9089658, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 908.9658260345459, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10396.533489227295, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,909", - "created": 1614535201.909136, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 909.1360569000244, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10396.703720092773, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:01,909", - "created": 1614535201.9092627, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 909.2626571655273, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10396.830320358276, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,909", - "created": 1614535201.9095213, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 909.5213413238525, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10397.089004516602, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:01,910", - "created": 1614535201.9106154, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 910.6154441833496, - "msg": "%s RX <- %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10398.183107376099, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:01,910", - "created": 1614535201.910885, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 910.8850955963135, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10398.452758789062, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:01,911", - "created": 1614535201.9110703, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 911.0703468322754, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10398.638010025024, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:01,911", - "created": 1614535201.9113126, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 911.3125801086426, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10398.880243301392, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:01,911", - "created": 1614535201.9116888, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 911.6888046264648, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10399.256467819214, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:01,911", - "created": 1614535201.9118764, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 911.8764400482178, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10399.444103240967, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - } - ], - "msecs": 225.97193717956543, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10713.539600372314, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.31409549713134766 - }, - { - "args": [ - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,227", - "created": 1614535202.2270582, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content 'client' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,226", - "created": 1614535202.2266078, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): 'client' ()", - "module": "test", - "msecs": 226.6077995300293, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10714.175462722778, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,226", - "created": 1614535202.2268677, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = 'client' ()", - "module": "test", - "msecs": 226.86767578125, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10714.435338973999, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 227.05817222595215, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10714.625835418701, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00019049644470214844 - }, - { - "args": [ - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,227", - "created": 1614535202.2276914, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content 'client' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,227", - "created": 1614535202.2273524, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): 'client' ()", - "module": "test", - "msecs": 227.35238075256348, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10714.920043945312, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,227", - "created": 1614535202.227536, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = 'client' ()", - "module": "test", - "msecs": 227.53596305847168, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10715.10362625122, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 227.6914119720459, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10715.259075164795, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015544891357421875 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:02,228", - "created": 1614535202.2281513, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 277, - "message": "Setting identical Channel names for client and server", - "module": "test_communication", - "moduleLogger": [], - "msecs": 228.1513214111328, - "msg": "Setting identical Channel names for client and server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10715.718984603882, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:02,574", - "created": 1614535202.5744035, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 281, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,228", - "created": 1614535202.2284307, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 228.43074798583984, - "msg": "%s Connection Lost...", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10715.998411178589, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:02,228", - "created": 1614535202.2286413, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 228.64127159118652, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10716.208934783936, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,228", - "created": 1614535202.2288072, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 228.8072109222412, - "msg": "%s Connection Lost...", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10716.37487411499, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:02,228", - "created": 1614535202.2289612, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 228.96122932434082, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10716.52889251709, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,229", - "created": 1614535202.229121, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 229.12096977233887, - "msg": "%s Connection established...", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10716.688632965088, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,229", - "created": 1614535202.2292895, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 229.28953170776367, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10716.857194900513, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:02,229", - "created": 1614535202.2294612, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 229.4611930847168, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10717.028856277466, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "'unittest'" - ], - "asctime": "2021-02-28 19:00:02,229", - "created": 1614535202.229792, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", - "module": "__init__", - "msecs": 229.79211807250977, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10717.359781265259, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,230", - "created": 1614535202.2305005, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 230.5004596710205, - "msg": "%s Connection established...", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10718.06812286377, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,230", - "created": 1614535202.2307127, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 230.7126522064209, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10718.28031539917, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:02,230", - "created": 1614535202.2308838, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 230.88383674621582, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10718.451499938965, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74" - ], - "asctime": "2021-02-28 19:00:02,231", - "created": 1614535202.2313633, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74", - "module": "__init__", - "msecs": 231.36329650878906, - "msg": "%s TX -> %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10718.930959701538, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74" - ], - "asctime": "2021-02-28 19:00:02,239", - "created": 1614535202.239925, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74", - "module": "__init__", - "msecs": 239.92490768432617, - "msg": "%s RX <- %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10727.492570877075, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,240", - "created": 1614535202.240296, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 240.2958869934082, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10727.863550186157, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:02,240", - "created": 1614535202.240507, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 240.5068874359131, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10728.074550628662, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,240", - "created": 1614535202.240741, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 240.74101448059082, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10728.30867767334, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,240", - "created": 1614535202.2409327, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 240.93270301818848, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10728.500366210938, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,241", - "created": 1614535202.241176, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 241.17588996887207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10728.743553161621, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,241", - "created": 1614535202.2413292, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 241.32919311523438, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10728.896856307983, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,241", - "created": 1614535202.2415404, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 241.54043197631836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10729.108095169067, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,241", - "created": 1614535202.2417362, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 241.73617362976074, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10729.30383682251, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,241", - "created": 1614535202.241964, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 241.96410179138184, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10729.53176498413, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,242", - "created": 1614535202.2421143, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 242.11430549621582, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10729.681968688965, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,242", - "created": 1614535202.2424264, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e", - "module": "__init__", - "msecs": 242.42639541625977, - "msg": "%s TX -> %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10729.994058609009, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,244", - "created": 1614535202.244472, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e", - "module": "__init__", - "msecs": 244.47202682495117, - "msg": "%s RX <- %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10732.0396900177, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,244", - "created": 1614535202.2449336, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 244.9336051940918, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10732.50126838684, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:02,245", - "created": 1614535202.2451491, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 245.1491355895996, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10732.716798782349, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(68): 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 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9" - ], - "asctime": "2021-02-28 19:00:02,245", - "created": 1614535202.2454584, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (68): 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 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 75 6e 69 74 74 65 73 74 22 7d f8 f6 c9 e9", - "module": "stp", - "msecs": 245.45836448669434, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10733.026027679443, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "'unittest'" - ], - "asctime": "2021-02-28 19:00:02,245", - "created": 1614535202.2459455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", - "module": "__init__", - "msecs": 245.94545364379883, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10733.513116836548, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:02,246", - "created": 1614535202.2461705, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 246.1705207824707, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10733.73818397522, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:02,246", - "created": 1614535202.2465644, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 246.56438827514648, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10734.132051467896, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:02,247", - "created": 1614535202.2475264, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 247.5264072418213, - "msg": "%s TX -> %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10735.09407043457, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:02,256", - "created": 1614535202.2560503, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 256.05034828186035, - "msg": "%s RX <- %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10743.61801147461, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,256", - "created": 1614535202.2563763, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 256.3762664794922, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10743.943929672241, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:02,256", - "created": 1614535202.2565477, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 256.5476894378662, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10744.115352630615, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,256", - "created": 1614535202.2567577, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 256.7577362060547, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10744.325399398804, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,256", - "created": 1614535202.2569008, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 256.9007873535156, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10744.468450546265, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,257", - "created": 1614535202.2571037, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 257.10368156433105, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10744.67134475708, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,257", - "created": 1614535202.2572355, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 257.2355270385742, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10744.803190231323, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,257", - "created": 1614535202.2574282, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 257.4281692504883, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10744.995832443237, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,257", - "created": 1614535202.2575588, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 257.55882263183594, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10745.126485824585, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,257", - "created": 1614535202.2577672, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 257.7672004699707, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10745.33486366272, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,257", - "created": 1614535202.2579014, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 257.9014301300049, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10745.469093322754, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,258", - "created": 1614535202.2581446, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 258.1446170806885, - "msg": "%s TX -> %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10745.712280273438, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,259", - "created": 1614535202.2592177, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 259.2177391052246, - "msg": "%s RX <- %s", - "name": "root.helpers.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10746.785402297974, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,259", - "created": 1614535202.2594793, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 259.479284286499, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10747.046947479248, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:02,259", - "created": 1614535202.2596498, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 259.64975357055664, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10747.217416763306, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:02,259", - "created": 1614535202.2598944, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 259.89437103271484, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10747.462034225464, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:02,260", - "created": 1614535202.2602684, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 260.2684497833252, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10747.836112976074, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:02,260", - "created": 1614535202.2604556, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 260.4556083679199, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.unittest", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 10748.023271560669, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - } - ], - "msecs": 574.4035243988037, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11061.971187591553, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.3139479160308838 - }, - { - "args": [ - "'unittest'", - "" - ], - "asctime": "2021-02-28 19:00:02,575", - "created": 1614535202.5755935, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content 'unittest' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "'unittest'", - "" - ], - "asctime": "2021-02-28 19:00:02,575", - "created": 1614535202.5751076, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): 'unittest' ()", - "module": "test", - "msecs": 575.1075744628906, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11062.67523765564, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "'unittest'", - "" - ], - "asctime": "2021-02-28 19:00:02,575", - "created": 1614535202.575355, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = 'unittest' ()", - "module": "test", - "msecs": 575.355052947998, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11062.922716140747, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 575.5934715270996, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11063.161134719849, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002384185791015625 - }, - { - "args": [ - "'unittest'", - "" - ], - "asctime": "2021-02-28 19:00:02,576", - "created": 1614535202.5762973, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content 'unittest' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "'unittest'", - "" - ], - "asctime": "2021-02-28 19:00:02,575", - "created": 1614535202.5759304, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): 'unittest' ()", - "module": "test", - "msecs": 575.9303569793701, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11063.49802017212, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "'unittest'", - "" - ], - "asctime": "2021-02-28 19:00:02,576", - "created": 1614535202.5761209, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = 'unittest' ()", - "module": "test", - "msecs": 576.1208534240723, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11063.688516616821, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 576.2972831726074, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11063.864946365356, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00017642974853515625 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:02,576", - "created": 1614535202.5767703, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 287, - "message": "Setting Channel name for client only", - "module": "test_communication", - "moduleLogger": [], - "msecs": 576.7703056335449, - "msg": "Setting Channel name for client only", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11064.337968826294, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:02,923", - "created": 1614535202.9233503, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 291, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,577", - "created": 1614535202.5770607, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 577.0606994628906, - "msg": "%s Connection Lost...", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11064.62836265564, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:02,577", - "created": 1614535202.5772748, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 577.2747993469238, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11064.842462539673, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,577", - "created": 1614535202.5774589, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 577.4588584899902, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11065.02652168274, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:02,577", - "created": 1614535202.5776315, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 577.6314735412598, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11065.199136734009, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,577", - "created": 1614535202.5778978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 577.8977870941162, - "msg": "%s Connection established...", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11065.465450286865, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,578", - "created": 1614535202.578094, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 578.0940055847168, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11065.661668777466, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:02,578", - "created": 1614535202.5782778, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 578.2778263092041, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11065.845489501953, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-02-28 19:00:02,578", - "created": 1614535202.578602, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 578.6020755767822, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11066.169738769531, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,579", - "created": 1614535202.5793712, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 579.3712139129639, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11066.938877105713, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,579", - "created": 1614535202.5795934, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 579.5934200286865, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11067.161083221436, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:02,579", - "created": 1614535202.5797832, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 579.7832012176514, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11067.3508644104, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" - ], - "asctime": "2021-02-28 19:00:02,580", - "created": 1614535202.5803595, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", - "module": "__init__", - "msecs": 580.3594589233398, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11067.927122116089, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" - ], - "asctime": "2021-02-28 19:00:02,589", - "created": 1614535202.589018, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", - "module": "__init__", - "msecs": 589.0181064605713, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11076.58576965332, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,589", - "created": 1614535202.5893772, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 589.3771648406982, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11076.944828033447, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:02,589", - "created": 1614535202.5895755, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 589.5755290985107, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11077.14319229126, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,589", - "created": 1614535202.5898492, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 589.8492336273193, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11077.416896820068, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,590", - "created": 1614535202.5900106, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 590.0106430053711, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11077.57830619812, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,590", - "created": 1614535202.5902495, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 590.2495384216309, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11077.81720161438, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,590", - "created": 1614535202.5903995, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 590.3995037078857, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11077.967166900635, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,590", - "created": 1614535202.5906055, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 590.6054973602295, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11078.173160552979, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,590", - "created": 1614535202.5907528, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 590.7528400421143, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11078.320503234863, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,590", - "created": 1614535202.5909472, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 590.947151184082, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11078.514814376831, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,591", - "created": 1614535202.591092, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 591.0921096801758, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11078.659772872925, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,591", - "created": 1614535202.5914166, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (10): 6e 74 22 7d ee af 7b 7e 3a 3e", - "module": "__init__", - "msecs": 591.416597366333, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11078.984260559082, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,593", - "created": 1614535202.5933387, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (10): 6e 74 22 7d ee af 7b 7e 3a 3e", - "module": "__init__", - "msecs": 593.3387279510498, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11080.906391143799, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,593", - "created": 1614535202.5937805, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 593.780517578125, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11081.348180770874, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:02,593", - "created": 1614535202.5939937, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 593.9936637878418, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11081.56132698059, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(66): 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 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e" - ], - "asctime": "2021-02-28 19:00:02,594", - "created": 1614535202.594336, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (66): 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 38 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 6c 69 65 6e 74 22 7d ee af 7b 7e", - "module": "stp", - "msecs": 594.3360328674316, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11081.90369606018, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "'client'" - ], - "asctime": "2021-02-28 19:00:02,594", - "created": 1614535202.5947857, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", - "module": "__init__", - "msecs": 594.7856903076172, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11082.353353500366, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:02,595", - "created": 1614535202.5950072, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 595.0071811676025, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11082.574844360352, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "'client'" - ], - "asctime": "2021-02-28 19:00:02,595", - "created": 1614535202.5953197, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__channel_name_request__", - "levelname": "INFO", - "levelno": 20, - "lineno": 432, - "message": "prot-server: channel name is now 'client'", - "module": "__init__", - "msecs": 595.3197479248047, - "msg": "%s channel name is now %s", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11082.887411117554, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:02,595", - "created": 1614535202.5955849, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 595.5848693847656, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11083.152532577515, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:02,596", - "created": 1614535202.596521, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 596.5209007263184, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11084.088563919067, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:02,605", - "created": 1614535202.6052492, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 605.2491664886475, - "msg": "%s RX <- %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11092.816829681396, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,605", - "created": 1614535202.6056085, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 605.6084632873535, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11093.176126480103, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:02,605", - "created": 1614535202.6058836, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 605.8835983276367, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11093.451261520386, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,606", - "created": 1614535202.6061287, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 606.1286926269531, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11093.696355819702, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,606", - "created": 1614535202.606295, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 606.295108795166, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11093.862771987915, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,606", - "created": 1614535202.6065326, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 606.5325736999512, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11094.1002368927, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,606", - "created": 1614535202.6066842, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 606.6842079162598, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11094.251871109009, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,606", - "created": 1614535202.606894, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 606.8940162658691, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11094.461679458618, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,607", - "created": 1614535202.607056, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 607.0559024810791, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11094.623565673828, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,607", - "created": 1614535202.6072543, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 607.2542667388916, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11094.82192993164, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,607", - "created": 1614535202.6073987, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 607.3987483978271, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11094.966411590576, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,607", - "created": 1614535202.607688, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 607.6879501342773, - "msg": "%s TX -> %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11095.255613327026, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,608", - "created": 1614535202.6088066, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 608.8066101074219, - "msg": "%s RX <- %s", - "name": "root.helpers.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11096.37427330017, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,609", - "created": 1614535202.6091125, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 609.1125011444092, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11096.680164337158, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:02,609", - "created": 1614535202.6093323, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 609.3323230743408, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11096.89998626709, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:02,609", - "created": 1614535202.6096082, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 609.6081733703613, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11097.17583656311, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:02,610", - "created": 1614535202.6100936, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 610.0935935974121, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11097.661256790161, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:02,610", - "created": 1614535202.610298, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 610.2979183197021, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.client", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11097.865581512451, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - } - ], - "msecs": 923.3503341674805, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11410.91799736023, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.3130524158477783 - }, - { - "args": [ - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,924", - "created": 1614535202.924511, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content 'client' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,924", - "created": 1614535202.9240565, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): 'client' ()", - "module": "test", - "msecs": 924.0565299987793, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11411.624193191528, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,924", - "created": 1614535202.9243045, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = 'client' ()", - "module": "test", - "msecs": 924.3044853210449, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11411.872148513794, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 924.5109558105469, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11412.078619003296, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00020647048950195312 - }, - { - "args": [ - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,925", - "created": 1614535202.9252384, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content 'client' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,924", - "created": 1614535202.9248335, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): 'client' ()", - "module": "test", - "msecs": 924.8335361480713, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11412.40119934082, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "'client'", - "" - ], - "asctime": "2021-02-28 19:00:02,925", - "created": 1614535202.925059, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = 'client' ()", - "module": "test", - "msecs": 925.0590801239014, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11412.62674331665, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 925.2383708953857, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11412.806034088135, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.000179290771484375 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:02,925", - "created": 1614535202.925745, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 297, - "message": "Setting Channel name for server only", - "module": "test_communication", - "moduleLogger": [], - "msecs": 925.7450103759766, - "msg": "Setting Channel name for server only", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11413.312673568726, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:03,272", - "created": 1614535203.272181, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "channel_name_exchange", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 301, - "message": "Connecting Server and Client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,926", - "created": 1614535202.9260647, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 926.0647296905518, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11413.6323928833, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:02,926", - "created": 1614535202.9262798, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 926.2797832489014, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11413.84744644165, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,926", - "created": 1614535202.9264643, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 926.464319229126, - "msg": "%s Connection Lost...", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11414.031982421875, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:02,926", - "created": 1614535202.9266355, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 926.6355037689209, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11414.20316696167, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,926", - "created": 1614535202.9268162, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 926.8162250518799, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11414.383888244629, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:02,926", - "created": 1614535202.926991, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 926.9909858703613, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11414.55864906311, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:02,927", - "created": 1614535202.9271662, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 927.166223526001, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11414.73388671875, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:02,927", - "created": 1614535202.9274871, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 927.4871349334717, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11415.05479812622, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,928", - "created": 1614535202.9282458, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 928.2457828521729, - "msg": "%s Connection established...", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11415.813446044922, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:02,928", - "created": 1614535202.9284668, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 928.466796875, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11416.034460067749, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:02,928", - "created": 1614535202.9286554, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 928.6553859710693, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11416.223049163818, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:02,929", - "created": 1614535202.929408, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 929.408073425293, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11416.975736618042, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:02,938", - "created": 1614535202.938147, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 938.1470680236816, - "msg": "%s RX <- %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11425.71473121643, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,938", - "created": 1614535202.9385679, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 938.5678768157959, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11426.135540008545, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:02,938", - "created": 1614535202.9387922, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 938.7922286987305, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11426.35989189148, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,939", - "created": 1614535202.9390562, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 939.0561580657959, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11426.623821258545, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,939", - "created": 1614535202.9392374, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 939.2373561859131, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11426.805019378662, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,939", - "created": 1614535202.9395084, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 939.5084381103516, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11427.0761013031, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,939", - "created": 1614535202.9396772, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 939.6772384643555, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11427.244901657104, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,939", - "created": 1614535202.9399145, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 939.9144649505615, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11427.48212814331, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,940", - "created": 1614535202.9400916, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 940.091609954834, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11427.659273147583, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,940", - "created": 1614535202.9402864, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 940.28639793396, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11427.854061126709, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,940", - "created": 1614535202.9404314, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 940.4313564300537, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11427.999019622803, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,940", - "created": 1614535202.940724, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 940.7238960266113, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11428.29155921936, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,941", - "created": 1614535202.9418504, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 941.8504238128662, - "msg": "%s RX <- %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11429.418087005615, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,942", - "created": 1614535202.9421554, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 942.1553611755371, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11429.723024368286, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:02,942", - "created": 1614535202.94236, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 942.3599243164062, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11429.927587509155, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:02,942", - "created": 1614535202.9426694, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 942.6693916320801, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11430.23705482483, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:02,943", - "created": 1614535202.9431217, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 943.1216716766357, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11430.689334869385, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:02,943", - "created": 1614535202.943358, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 943.3579444885254, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11430.925607681274, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "'server'" - ], - "asctime": "2021-02-28 19:00:02,943", - "created": 1614535202.9436483, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"'server'\"", - "module": "__init__", - "msecs": 943.6483383178711, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11431.21600151062, - "stack_info": null, - "thread": 140380200761088, - "threadName": "Thread-13" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76" - ], - "asctime": "2021-02-28 19:00:02,944", - "created": 1614535202.944811, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76", - "module": "__init__", - "msecs": 944.8111057281494, - "msg": "%s TX -> %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11432.378768920898, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76" - ], - "asctime": "2021-02-28 19:00:02,953", - "created": 1614535202.9535363, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76", - "module": "__init__", - "msecs": 953.5362720489502, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11441.1039352417, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,953", - "created": 1614535202.9539292, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 953.9291858673096, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11441.496849060059, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:02,954", - "created": 1614535202.9541311, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 954.1311264038086, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11441.698789596558, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,954", - "created": 1614535202.954366, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 954.3659687042236, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11441.933631896973, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,954", - "created": 1614535202.9546647, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 954.6647071838379, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11442.232370376587, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,954", - "created": 1614535202.9549305, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 954.9305438995361, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11442.498207092285, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,955", - "created": 1614535202.955094, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 955.0940990447998, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11442.661762237549, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,955", - "created": 1614535202.955304, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 955.3039073944092, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11442.871570587158, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,955", - "created": 1614535202.9554522, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 955.4522037506104, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11443.01986694336, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,955", - "created": 1614535202.9556484, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 955.6484222412109, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11443.21608543396, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:02,955", - "created": 1614535202.9557946, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 955.7945728302002, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11443.36223602295, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-server:", - "(10): 65 72 22 7d ac a3 7b cc 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,956", - "created": 1614535202.9560928, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (10): 65 72 22 7d ac a3 7b cc 3a 3e", - "module": "__init__", - "msecs": 956.0928344726562, - "msg": "%s TX -> %s", - "name": "root.helpers.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11443.660497665405, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "comm-client:", - "(10): 65 72 22 7d ac a3 7b cc 3a 3e" - ], - "asctime": "2021-02-28 19:00:02,957", - "created": 1614535202.9579988, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (10): 65 72 22 7d ac a3 7b cc 3a 3e", - "module": "__init__", - "msecs": 957.9987525939941, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11445.566415786743, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:02,958", - "created": 1614535202.9584033, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 958.4033489227295, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11445.971012115479, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:02,958", - "created": 1614535202.9586358, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 958.6358070373535, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11446.203470230103, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "STP:", - "(66): 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 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc" - ], - "asctime": "2021-02-28 19:00:02,958", - "created": 1614535202.9589286, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (66): 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 39 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 73 65 72 76 65 72 22 7d ac a3 7b cc", - "module": "stp", - "msecs": 958.9285850524902, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11446.49624824524, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "'server'" - ], - "asctime": "2021-02-28 19:00:02,959", - "created": 1614535202.9593732, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"'server'\"", - "module": "__init__", - "msecs": 959.3732357025146, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11446.940898895264, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:02,959", - "created": 1614535202.9595978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 959.5978260040283, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11447.165489196777, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - }, - { - "args": [ - "prot-client:", - "'server'" - ], - "asctime": "2021-02-28 19:00:02,959", - "created": 1614535202.959897, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__channel_name_response__", - "levelname": "INFO", - "levelno": 20, - "lineno": 419, - "message": "prot-client: channel name is now 'server'", - "module": "__init__", - "msecs": 959.8970413208008, - "msg": "%s channel name is now %s", - "name": "root.socket_protocol.server", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11447.46470451355, - "stack_info": null, - "thread": 140380192368384, - "threadName": "Thread-14" - } - ], - "msecs": 272.18103408813477, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11759.748697280884, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.312283992767334 - }, - { - "args": [ - "'server'", - "" - ], - "asctime": "2021-02-28 19:00:03,273", - "created": 1614535203.273346, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of server is correct (Content 'server' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of server", - "'server'", - "" - ], - "asctime": "2021-02-28 19:00:03,272", - "created": 1614535203.2728896, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of server): 'server' ()", - "module": "test", - "msecs": 272.8896141052246, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11760.457277297974, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of server", - "'server'", - "" - ], - "asctime": "2021-02-28 19:00:03,273", - "created": 1614535203.2731392, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of server): result = 'server' ()", - "module": "test", - "msecs": 273.13923835754395, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11760.706901550293, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 273.345947265625, - "msg": "Channel name of server is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11760.913610458374, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002067089080810547 - }, - { - "args": [ - "'server'", - "" - ], - "asctime": "2021-02-28 19:00:03,274", - "created": 1614535203.2742627, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Channel name of client is correct (Content 'server' and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Channel name of client", - "'server'", - "" - ], - "asctime": "2021-02-28 19:00:03,273", - "created": 1614535203.2737982, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Channel name of client): 'server' ()", - "module": "test", - "msecs": 273.79822731018066, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11761.36589050293, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Channel name of client", - "'server'", - "" - ], - "asctime": "2021-02-28 19:00:03,274", - "created": 1614535203.2740312, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Channel name of client): result = 'server' ()", - "module": "test", - "msecs": 274.0311622619629, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11761.598825454712, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 274.2626667022705, - "msg": "Channel name of client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11761.83032989502, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002315044403076172 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 1.752976417541504, - "time_finished": "2021-02-28 19:00:03,274", - "time_start": "2021-02-28 19:00:01,521" - }, - "_Pn3WgE0NEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:57,045", - "created": 1614535197.045113, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 37, - "message": "_Pn3WgE0NEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 45.11308670043945, - "msg": "_Pn3WgE0NEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5532.6807498931885, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:57,055", - "created": 1614535197.0550632, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:57,046", - "created": 1614535197.0464787, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 46.4787483215332, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5534.046411514282, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:57,047", - "created": 1614535197.047655, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 47.65510559082031, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5535.222768783569, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:57,047", - "created": 1614535197.0479534, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 47.95336723327637, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5535.521030426025, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:57,048", - "created": 1614535197.0483515, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 48.35152626037598, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5535.919189453125, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:57,048", - "created": 1614535197.0485728, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 48.57277870178223, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5536.140441894531, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:57,049", - "created": 1614535197.0491054, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 49.10540580749512, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5536.673069000244, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:57,049", - "created": 1614535197.0492785, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 49.27849769592285, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5536.846160888672, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:57,049", - "created": 1614535197.0494301, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 49.430131912231445, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5536.9977951049805, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:57,049", - "created": 1614535197.0495732, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 49.57318305969238, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5537.140846252441, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:57,049", - "created": 1614535197.0497627, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 49.762725830078125, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5537.330389022827, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:57,049", - "created": 1614535197.0499296, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 49.92961883544922, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5537.497282028198, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:57,050", - "created": 1614535197.0500836, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 50.08363723754883, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5537.651300430298, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:57,050", - "created": 1614535197.0502434, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 50.243377685546875, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5537.811040878296, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:57,050", - "created": 1614535197.0503824, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 50.382375717163086, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5537.950038909912, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:57,050", - "created": 1614535197.0505455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 50.545454025268555, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5538.113117218018, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:57,050", - "created": 1614535197.0507095, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 50.70948600769043, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5538.277149200439, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:57,050", - "created": 1614535197.0508616, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 50.86159706115723, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5538.429260253906, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:57,051", - "created": 1614535197.0510228, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 51.02276802062988, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5538.590431213379, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:57,051", - "created": 1614535197.0511925, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 51.192522048950195, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5538.760185241699, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:57,051", - "created": 1614535197.0513387, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 51.33867263793945, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5538.9063358306885, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:57,051", - "created": 1614535197.0514767, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 51.47671699523926, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5539.044380187988, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:57,051", - "created": 1614535197.0516129, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 51.61285400390625, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5539.180517196655, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:57,051", - "created": 1614535197.05175, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 51.74994468688965, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5539.317607879639, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:57,052", - "created": 1614535197.0520253, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 52.02531814575195, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5539.592981338501, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:57,052", - "created": 1614535197.0521839, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 52.18386650085449, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5539.7515296936035, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:57,052", - "created": 1614535197.052381, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 52.381038665771484, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5539.9487018585205, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:57,052", - "created": 1614535197.052539, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 52.53911018371582, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5540.106773376465, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:57,052", - "created": 1614535197.05268, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 52.680015563964844, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5540.247678756714, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:57,052", - "created": 1614535197.052815, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 52.81496047973633, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5540.382623672485, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:57,052", - "created": 1614535197.052974, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 52.97398567199707, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5540.541648864746, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:57,053", - "created": 1614535197.0531356, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 53.13563346862793, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5540.703296661377, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:57,053", - "created": 1614535197.0532818, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 53.28178405761719, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5540.849447250366, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:57,053", - "created": 1614535197.0534294, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 53.429365158081055, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5540.99702835083, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:57,053", - "created": 1614535197.05356, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 53.56001853942871, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5541.127681732178, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:57,053", - "created": 1614535197.0537262, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 53.7261962890625, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5541.2938594818115, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:57,053", - "created": 1614535197.0538883, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 53.88832092285156, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5541.455984115601, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:57,054", - "created": 1614535197.054029, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 54.028987884521484, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5541.5966510772705, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:57,054", - "created": 1614535197.0542085, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 54.20851707458496, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5541.776180267334, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:57,054", - "created": 1614535197.0543604, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 54.360389709472656, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5541.928052902222, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:57,054", - "created": 1614535197.0545118, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 54.51178550720215, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5542.079448699951, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:57,054", - "created": 1614535197.054652, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 54.65197563171387, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5542.219638824463, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:57,054", - "created": 1614535197.0547857, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 54.785728454589844, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5542.353391647339, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:57,054", - "created": 1614535197.0549314, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 54.9314022064209, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5542.49906539917, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 55.06324768066406, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5542.630910873413, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00013184547424316406 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:57,400", - "created": 1614535197.4001336, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:57,055", - "created": 1614535197.0553553, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 55.35531044006348, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5542.9229736328125, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:57,055", - "created": 1614535197.0555015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 55.501461029052734, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5543.069124221802, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:57,055", - "created": 1614535197.0556412, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 55.64117431640625, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5543.208837509155, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:57,055", - "created": 1614535197.0558927, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 55.8927059173584, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5543.460369110107, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:57,056", - "created": 1614535197.056449, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 56.448936462402344, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5544.016599655151, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:57,056", - "created": 1614535197.0566206, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 56.62059783935547, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5544.1882610321045, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:57,056", - "created": 1614535197.0567667, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 56.76674842834473, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5544.334411621094, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:57,057", - "created": 1614535197.0573423, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 57.3422908782959, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5544.909954071045, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:57,065", - "created": 1614535197.0658655, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 65.86551666259766, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5553.433179855347, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,066", - "created": 1614535197.0662167, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 66.21670722961426, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5553.784370422363, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:57,066", - "created": 1614535197.0664036, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 66.40362739562988, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5553.971290588379, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,066", - "created": 1614535197.0666208, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 66.6208267211914, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5554.18848991394, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,066", - "created": 1614535197.066766, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 66.76602363586426, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5554.333686828613, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,066", - "created": 1614535197.0669808, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 66.98083877563477, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5554.548501968384, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,067", - "created": 1614535197.0671303, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 67.13032722473145, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5554.6979904174805, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,067", - "created": 1614535197.067346, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 67.34609603881836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5554.913759231567, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,067", - "created": 1614535197.0675006, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 67.50059127807617, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5555.068254470825, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,067", - "created": 1614535197.0676985, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 67.69847869873047, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5555.2661418914795, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,067", - "created": 1614535197.0678427, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 67.84272193908691, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5555.410385131836, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,068", - "created": 1614535197.0681334, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 68.13335418701172, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5555.701017379761, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,069", - "created": 1614535197.06929, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 69.2899227142334, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5556.857585906982, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,069", - "created": 1614535197.0696251, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 69.6251392364502, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5557.192802429199, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:57,069", - "created": 1614535197.069886, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 69.8859691619873, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5557.453632354736, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 18:59:57,070", - "created": 1614535197.0701325, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 70.13249397277832, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5557.700157165527, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:57,070", - "created": 1614535197.0705109, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 70.5108642578125, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5558.0785274505615, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:57,070", - "created": 1614535197.070724, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 70.7240104675293, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5558.291673660278, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:57,070", - "created": 1614535197.07099, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 70.99008560180664, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5558.557748794556, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:57,071", - "created": 1614535197.0718384, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 71.83837890625, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5559.406042098999, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:57,080", - "created": 1614535197.080353, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 80.3530216217041, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5567.920684814453, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,080", - "created": 1614535197.080651, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 80.65104484558105, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5568.21870803833, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:57,080", - "created": 1614535197.0808306, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 80.83057403564453, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5568.398237228394, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,081", - "created": 1614535197.0810337, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 81.03370666503906, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5568.601369857788, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,081", - "created": 1614535197.0811758, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 81.1758041381836, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5568.743467330933, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,081", - "created": 1614535197.0813804, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 81.38036727905273, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5568.948030471802, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,081", - "created": 1614535197.0815234, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 81.52341842651367, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5569.091081619263, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,081", - "created": 1614535197.0817435, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 81.74347877502441, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5569.311141967773, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,081", - "created": 1614535197.0818973, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 81.89725875854492, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5569.464921951294, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,082", - "created": 1614535197.0820963, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 82.09633827209473, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5569.664001464844, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,082", - "created": 1614535197.0822608, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 82.2608470916748, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5569.828510284424, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,082", - "created": 1614535197.0826106, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 82.6106071472168, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5570.178270339966, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,083", - "created": 1614535197.083748, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 83.74810218811035, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5571.315765380859, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,084", - "created": 1614535197.0840626, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 84.06257629394531, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5571.630239486694, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:57,084", - "created": 1614535197.0842454, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 84.24544334411621, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5571.813106536865, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 18:59:57,084", - "created": 1614535197.0845358, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 84.53583717346191, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5572.103500366211, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:57,084", - "created": 1614535197.08494, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 84.93995666503906, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5572.507619857788, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:57,085", - "created": 1614535197.0851564, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 85.15644073486328, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5572.724103927612, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - } - ], - "msecs": 400.1336097717285, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5887.7012729644775, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.31497716903686523 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:57,400", - "created": 1614535197.4007826, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 150, - "message": "Setting a Server secret and no Client secret", - "module": "test_communication", - "moduleLogger": [], - "msecs": 400.78258514404297, - "msg": "Setting a Server secret and no Client secret", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5888.350248336792, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:57,603", - "created": 1614535197.6030655, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 153, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: execute request, data_id: 36", - "status: okay", - "'msg3_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:57,401", - "created": 1614535197.401287, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 401.2870788574219, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5888.854742050171, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:57,402", - "created": 1614535197.402537, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 402.53710746765137, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5890.1047706604, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:57,411", - "created": 1614535197.4113007, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 411.3006591796875, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5898.8683223724365, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,411", - "created": 1614535197.411693, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 411.6930961608887, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5899.260759353638, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:57,411", - "created": 1614535197.4119217, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 411.92173957824707, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5899.489402770996, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,412", - "created": 1614535197.4121912, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 412.19115257263184, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5899.758815765381, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,412", - "created": 1614535197.4123747, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 412.37473487854004, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5899.942398071289, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,412", - "created": 1614535197.4126532, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 412.65320777893066, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5900.22087097168, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,412", - "created": 1614535197.4128406, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 412.8406047821045, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5900.4082679748535, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,413", - "created": 1614535197.4131496, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 413.1495952606201, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5900.717258453369, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,413", - "created": 1614535197.4133506, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 413.35058212280273, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5900.918245315552, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,413", - "created": 1614535197.41358, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 413.57994079589844, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5901.1476039886475, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,413", - "created": 1614535197.4137864, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 413.7864112854004, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5901.354074478149, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,414", - "created": 1614535197.414159, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e", - "module": "__init__", - "msecs": 414.15905952453613, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5901.726722717285, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,418", - "created": 1614535197.4186435, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e", - "module": "__init__", - "msecs": 418.6434745788574, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5906.211137771606, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,419", - "created": 1614535197.4191642, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 419.16418075561523, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5906.731843948364, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:57,419", - "created": 1614535197.4193661, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 419.36612129211426, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5906.933784484863, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d" - ], - "asctime": "2021-02-28 18:59:57,419", - "created": 1614535197.419734, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d", - "module": "stp", - "msecs": 419.73400115966797, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5907.301664352417, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: execute request, data_id: 36", - "status: okay", - "'msg3_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:57,420", - "created": 1614535197.4201925, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 420.1924800872803, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5907.760143280029, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:57,420", - "created": 1614535197.4203982, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 471, - "message": "prot-server: Authentification is required. Just sending negative response.", - "module": "__init__", - "msecs": 420.3982353210449, - "msg": "%s Authentification is required. Just sending negative response.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5907.965898513794, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: execute response, data_id: 36", - "status: authentification required", - "None" - ], - "asctime": "2021-02-28 18:59:57,420", - "created": 1614535197.4206946, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 450, - "message": "prot-server: TX -> service: execute response, data_id: 36, status: authentification required, data: \"None\"", - "module": "__init__", - "msecs": 420.69458961486816, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5908.262252807617, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" - ], - "asctime": "2021-02-28 18:59:57,421", - "created": 1614535197.421915, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", - "module": "__init__", - "msecs": 421.91505432128906, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5909.482717514038, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" - ], - "asctime": "2021-02-28 18:59:57,430", - "created": 1614535197.4306908, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", - "module": "__init__", - "msecs": 430.6907653808594, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5918.258428573608, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,431", - "created": 1614535197.4310465, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 431.0464859008789, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5918.614149093628, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:57,431", - "created": 1614535197.431283, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 431.28299713134766, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5918.850660324097, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,431", - "created": 1614535197.4315186, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 431.5185546875, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5919.086217880249, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,431", - "created": 1614535197.4316854, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 431.6854476928711, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5919.25311088562, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,431", - "created": 1614535197.4319274, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 431.9274425506592, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5919.495105743408, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,432", - "created": 1614535197.4320776, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 432.07764625549316, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5919.645309448242, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,432", - "created": 1614535197.4322896, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 432.28960037231445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5919.8572635650635, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,432", - "created": 1614535197.4324362, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 432.4362277984619, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5920.003890991211, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,432", - "created": 1614535197.432632, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 432.6319694519043, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5920.199632644653, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,432", - "created": 1614535197.4327772, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 432.77716636657715, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5920.344829559326, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(8): 6c 7d 5d 78 af a4 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,433", - "created": 1614535197.4330547, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (8): 6c 7d 5d 78 af a4 3a 3e", - "module": "__init__", - "msecs": 433.05468559265137, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5920.6223487854, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(8): 6c 7d 5d 78 af a4 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,434", - "created": 1614535197.434452, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (8): 6c 7d 5d 78 af a4 3a 3e", - "module": "__init__", - "msecs": 434.4520568847656, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5922.019720077515, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,434", - "created": 1614535197.434787, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 434.7870349884033, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5922.354698181152, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:57,434", - "created": 1614535197.4349914, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 434.99135971069336, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5922.559022903442, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4" - ], - "asctime": "2021-02-28 18:59:57,435", - "created": 1614535197.4352775, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 5d 78 af a4", - "module": "stp", - "msecs": 435.27746200561523, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5922.845125198364, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: execute response, data_id: 36", - "status: authentification required", - "None" - ], - "asctime": "2021-02-28 18:59:57,435", - "created": 1614535197.435657, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 450, - "message": "prot-client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", - "module": "__init__", - "msecs": 435.6570243835449, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5923.224687576294, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:57,435", - "created": 1614535197.4358969, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 435.8968734741211, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 5923.46453666687, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - } - ], - "msecs": 603.0654907226562, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6090.633153915405, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.16716861724853516 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,604", - "created": 1614535197.6041784, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,603", - "created": 1614535197.6037266, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 603.7266254425049, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6091.294288635254, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,603", - "created": 1614535197.6039712, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 603.9712429046631, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6091.538906097412, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 604.1784286499023, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6091.746091842651, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002071857452392578 - }, - { - "args": [ - "{'data_id': 36, 'service_id': 31, 'status': 3, 'data': None}", - "" - ], - "asctime": "2021-02-28 18:59:57,604", - "created": 1614535197.6049569, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {'data_id': 36, 'service_id': 31, 'status': 3, 'data': None} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{'data_id': 36, 'service_id': 31, 'status': 3, 'data': None}", - "" - ], - "asctime": "2021-02-28 18:59:57,604", - "created": 1614535197.6045077, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {'data_id': 36, 'service_id': 31, 'status': 3, 'data': None} ()", - "module": "test", - "msecs": 604.5076847076416, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6092.075347900391, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'service_id': 31, 'data_id': 36, 'status': 3, 'data': None}", - "" - ], - "asctime": "2021-02-28 18:59:57,604", - "created": 1614535197.6047497, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'service_id': 31, 'data_id': 36, 'status': 3, 'data': None} ()", - "module": "test", - "msecs": 604.7496795654297, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6092.317342758179, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 604.956865310669, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6092.524528503418, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002071857452392578 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:57,605", - "created": 1614535197.6052337, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 159, - "message": "Setting no Server secret but a Client secret", - "module": "test_communication", - "moduleLogger": [], - "msecs": 605.2336692810059, - "msg": "Setting no Server secret but a Client secret", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6092.801332473755, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:57,908", - "created": 1614535197.9082057, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 162, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:57,605", - "created": 1614535197.6056924, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 450, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 605.6923866271973, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6093.260049819946, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:57,606", - "created": 1614535197.6068854, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 606.8854331970215, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6094.4530963897705, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:57,615", - "created": 1614535197.61542, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 615.4201030731201, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6102.987766265869, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,615", - "created": 1614535197.615756, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 615.7560348510742, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6103.323698043823, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:57,615", - "created": 1614535197.6159616, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 615.9615516662598, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6103.529214859009, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,616", - "created": 1614535197.616204, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 616.204023361206, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6103.771686553955, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,616", - "created": 1614535197.6163704, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 616.370439529419, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6103.938102722168, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,616", - "created": 1614535197.6166272, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 616.6272163391113, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6104.19487953186, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,616", - "created": 1614535197.6168272, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 616.8272495269775, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6104.394912719727, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,617", - "created": 1614535197.6170714, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 617.0713901519775, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6104.639053344727, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,617", - "created": 1614535197.617239, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 617.2389984130859, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6104.806661605835, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,617", - "created": 1614535197.6174357, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 617.4356937408447, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6105.003356933594, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:57,617", - "created": 1614535197.6175814, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 617.5813674926758, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6105.149030685425, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,618", - "created": 1614535197.6181035, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", - "module": "__init__", - "msecs": 618.1035041809082, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6105.671167373657, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" - ], - "asctime": "2021-02-28 18:59:57,622", - "created": 1614535197.6225493, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", - "module": "__init__", - "msecs": 622.549295425415, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6110.116958618164, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:57,623", - "created": 1614535197.6230145, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 623.0144500732422, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6110.582113265991, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:57,623", - "created": 1614535197.623214, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 623.2140064239502, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6110.781669616699, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" - ], - "asctime": "2021-02-28 18:59:57,623", - "created": 1614535197.62357, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "stp", - "msecs": 623.5699653625488, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6111.137628555298, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:57,624", - "created": 1614535197.6240256, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 450, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 624.0255832672119, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6111.593246459961, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:57,624", - "created": 1614535197.6242304, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "WARNING", - "levelno": 30, - "lineno": 475, - "message": "prot-client: Authentification is required. Incomming message will be ignored.", - "module": "__init__", - "msecs": 624.2303848266602, - "msg": "%s Authentification is required. Incomming message will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6111.798048019409, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:57,907", - "created": 1614535197.9078178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 907.8178405761719, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6395.385503768921, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 908.2057476043701, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6395.773410797119, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0003879070281982422 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,909", - "created": 1614535197.9091337, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,908", - "created": 1614535197.9086945, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 908.6945056915283, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6396.262168884277, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:57,908", - "created": 1614535197.9089184, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 908.9183807373047, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6396.486043930054, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 909.1336727142334, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6396.701335906982, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00021529197692871094 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:57,909", - "created": 1614535197.9098582, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:57,909", - "created": 1614535197.9094374, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 909.4374179840088, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6397.005081176758, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:57,909", - "created": 1614535197.9096212, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 909.6212387084961, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6397.188901901245, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 909.858226776123, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6397.425889968872, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00023698806762695312 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:57,910", - "created": 1614535197.910134, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 168, - "message": "Identical secrets set", - "module": "test_communication", - "moduleLogger": [], - "msecs": 910.1340770721436, - "msg": "Identical secrets set", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6397.701740264893, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:58,212", - "created": 1614535198.2124104, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 171, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:57,910", - "created": 1614535197.9104953, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 910.4952812194824, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6398.062944412231, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "0.28705533596837945", - "17", - "34" - ], - "asctime": "2021-02-28 18:59:58,212", - "created": 1614535198.2120044, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", - "module": "__init__", - "msecs": 212.0044231414795, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6699.5720863342285, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 212.41044998168945, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6699.9781131744385, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00040602684020996094 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:58,213", - "created": 1614535198.2132556, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:58,212", - "created": 1614535198.2128255, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): False ()", - "module": "test", - "msecs": 212.82553672790527, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6700.393199920654, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:58,213", - "created": 1614535198.2130435, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = False ()", - "module": "test", - "msecs": 213.0434513092041, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6700.611114501953, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 213.2556438446045, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6700.8233070373535, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00021219253540039062 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:58,213", - "created": 1614535198.2139862, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:58,213", - "created": 1614535198.2135587, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): None ()", - "module": "test", - "msecs": 213.55867385864258, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6701.126337051392, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:58,213", - "created": 1614535198.2138023, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = None ()", - "module": "test", - "msecs": 213.80233764648438, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6701.370000839233, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 213.98615837097168, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6701.553821563721, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001838207244873047 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:58,516", - "created": 1614535198.5162275, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 177, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:58,214", - "created": 1614535198.2143567, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "send", - "levelname": "WARNING", - "levelno": 30, - "lineno": 751, - "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", - "module": "__init__", - "msecs": 214.3566608428955, - "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 6701.9243240356445, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "0.28705533596837945", - "17", - "35" - ], - "asctime": "2021-02-28 18:59:58,515", - "created": 1614535198.515845, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "receive", - "levelname": "WARNING", - "levelno": 30, - "lineno": 683, - "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", - "module": "__init__", - "msecs": 515.8450603485107, - "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7003.41272354126, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 516.2274837493896, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7003.795146942139, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00038242340087890625 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 18:59:58,517", - "created": 1614535198.5170588, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:58,516", - "created": 1614535198.5166426, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): False ()", - "module": "test", - "msecs": 516.6425704956055, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7004.2102336883545, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "False", - "" - ], - "asctime": "2021-02-28 18:59:58,516", - "created": 1614535198.5168633, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = False ()", - "module": "test", - "msecs": 516.8633460998535, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7004.4310092926025, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 517.0588493347168, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7004.626512527466, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00019550323486328125 - }, - { - "args": [ - "None", - "" - ], - "asctime": "2021-02-28 18:59:58,517", - "created": 1614535198.517823, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content None and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:58,517", - "created": 1614535198.5173564, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): None ()", - "module": "test", - "msecs": 517.3563957214355, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7004.924058914185, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "None", - "" - ], - "asctime": "2021-02-28 18:59:58,517", - "created": 1614535198.5175407, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = None ()", - "module": "test", - "msecs": 517.540693283081, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7005.10835647583, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 517.8229808807373, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7005.390644073486, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00028228759765625 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:58,619", - "created": 1614535198.619506, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 182, - "message": "Performing Authentification", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:58,518", - "created": 1614535198.5182667, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 518.2666778564453, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7005.834341049194, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:58,519", - "created": 1614535198.519336, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 519.3359851837158, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7006.903648376465, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:58,527", - "created": 1614535198.527894, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 527.8940200805664, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7015.461683273315, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,528", - "created": 1614535198.5282466, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 528.2466411590576, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7015.814304351807, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:58,528", - "created": 1614535198.5284941, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 528.494119644165, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7016.061782836914, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,528", - "created": 1614535198.528735, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 528.7349224090576, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7016.302585601807, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,528", - "created": 1614535198.5289013, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 528.9013385772705, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7016.4690017700195, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,529", - "created": 1614535198.5291467, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 529.146671295166, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7016.714334487915, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,529", - "created": 1614535198.5293028, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 529.3028354644775, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7016.870498657227, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,529", - "created": 1614535198.5295143, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 529.5143127441406, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7017.08197593689, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,529", - "created": 1614535198.5297053, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 529.705286026001, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7017.27294921875, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,529", - "created": 1614535198.5299397, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 529.9396514892578, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7017.507314682007, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,530", - "created": 1614535198.530093, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 530.0929546356201, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7017.660617828369, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(6): fd 82 a2 a9 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,530", - "created": 1614535198.5303726, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", - "module": "__init__", - "msecs": 530.3726196289062, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7017.940282821655, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(6): fd 82 a2 a9 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,531", - "created": 1614535198.5315185, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", - "module": "__init__", - "msecs": 531.5184593200684, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7019.086122512817, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,531", - "created": 1614535198.531862, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 531.8620204925537, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7019.429683685303, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:58,532", - "created": 1614535198.5321066, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 532.1066379547119, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7019.674301147461, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(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 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 fd 82 a2 a9" - ], - "asctime": "2021-02-28 18:59:58,532", - "created": 1614535198.5323932, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 fd 82 a2 a9", - "module": "stp", - "msecs": 532.393217086792, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7019.960880279541, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:58,532", - "created": 1614535198.5328765, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 532.8764915466309, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7020.44415473938, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 18:59:58,533", - "created": 1614535198.5331018, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 533.1017971038818, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7020.669460296631, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'e724ac5d8c8afc57a6f7d39c60c2994d1770cfcd9de3e49a38d2d2626d43510c'" - ], - "asctime": "2021-02-28 18:59:58,533", - "created": 1614535198.533419, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'e724ac5d8c8afc57a6f7d39c60c2994d1770cfcd9de3e49a38d2d2626d43510c'\"", - "module": "__init__", - "msecs": 533.4188938140869, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7020.986557006836, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 37 32 34" - ], - "asctime": "2021-02-28 18:59:58,534", - "created": 1614535198.5345802, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 37 32 34", - "module": "__init__", - "msecs": 534.5802307128906, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7022.14789390564, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 37 32 34" - ], - "asctime": "2021-02-28 18:59:58,543", - "created": 1614535198.5431492, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 65 37 32 34", - "module": "__init__", - "msecs": 543.1492328643799, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7030.716896057129, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,543", - "created": 1614535198.543544, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 543.5440540313721, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7031.111717224121, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:58,543", - "created": 1614535198.5437653, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 543.7653064727783, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7031.332969665527, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,544", - "created": 1614535198.544092, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 544.0919399261475, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7031.6596031188965, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,544", - "created": 1614535198.5442612, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 544.2612171173096, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7031.828880310059, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,544", - "created": 1614535198.544496, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 544.4960594177246, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7032.063722610474, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,544", - "created": 1614535198.544645, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 544.6450710296631, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7032.212734222412, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,544", - "created": 1614535198.54485, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 544.8501110076904, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7032.417774200439, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,545", - "created": 1614535198.5450013, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 545.0012683868408, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7032.56893157959, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,545", - "created": 1614535198.5452442, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 545.2442169189453, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7032.811880111694, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,545", - "created": 1614535198.545401, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 545.4010963439941, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7032.968759536743, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(64): 61 63 35 64 38 63 38 61 66 63 35 37 61 36 66 37 64 33 39 63 36 30 63 32 39 39 34 64 31 37 37 30 63 66 63 64 39 64 65 33 65 34 39 61 33 38 64 32 64 32 36 32 36 64 34 33 35 31 30 63 22 7d f7 f1" - ], - "asctime": "2021-02-28 18:59:58,545", - "created": 1614535198.545829, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 61 63 35 64 38 63 38 61 66 63 35 37 61 36 66 37 64 33 39 63 36 30 63 32 39 39 34 64 31 37 37 30 63 66 63 64 39 64 65 33 65 34 39 61 33 38 64 32 64 32 36 32 36 64 34 33 35 31 30 63 22 7d f7 f1", - "module": "__init__", - "msecs": 545.8290576934814, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7033.3967208862305, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 61 63 35 64 38 63 38 61 66 63 35 37 61 36 66 37 64 33 39 63 36 30 63 32 39 39 34 64 31 37 37 30 63 66 63 64 39 64 65 33 65 34 39 61 33 38 64 32 64 32 36 32 36 64 34 33 35 31 30 63 22 7d f7 f1" - ], - "asctime": "2021-02-28 18:59:58,554", - "created": 1614535198.554469, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 61 63 35 64 38 63 38 61 66 63 35 37 61 36 66 37 64 33 39 63 36 30 63 32 39 39 34 64 31 37 37 30 63 66 63 64 39 64 65 33 65 34 39 61 33 38 64 32 64 32 36 32 36 64 34 33 35 31 30 63 22 7d f7 f1", - "module": "__init__", - "msecs": 554.469108581543, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7042.036771774292, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(4): d9 c5 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,555", - "created": 1614535198.5552566, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (4): d9 c5 3a 3e", - "module": "__init__", - "msecs": 555.2566051483154, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7042.824268341064, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(4): d9 c5 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,556", - "created": 1614535198.5561674, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (4): d9 c5 3a 3e", - "module": "__init__", - "msecs": 556.1673641204834, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7043.735027313232, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,556", - "created": 1614535198.556462, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 556.4620494842529, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7044.029712677002, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:58,556", - "created": 1614535198.5566611, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 556.6611289978027, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7044.228792190552, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(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 31 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 37 32 34 61 63 35 64 38 63 38 61 66 63 35 37 61 36 66 37 64 33 39 63 36 30 63 32 39 39 34 64 31 37 37 30 63 66 63 64 39 64 65 33 65 34 39 61 33 38 64 32 64 32 36 32 36 64 34 33 35 31 30 63 22 7d f7 f1 d9 c5" - ], - "asctime": "2021-02-28 18:59:58,557", - "created": 1614535198.5570707, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 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 37 32 34 61 63 35 64 38 63 38 61 66 63 35 37 61 36 66 37 64 33 39 63 36 30 63 32 39 39 34 64 31 37 37 30 63 66 63 64 39 64 65 33 65 34 39 61 33 38 64 32 64 32 36 32 36 64 34 33 35 31 30 63 22 7d f7 f1 d9 c5", - "module": "stp", - "msecs": 557.0707321166992, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7044.638395309448, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: seed", - "status: okay", - "'e724ac5d8c8afc57a6f7d39c60c2994d1770cfcd9de3e49a38d2d2626d43510c'" - ], - "asctime": "2021-02-28 18:59:58,557", - "created": 1614535198.5576096, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'e724ac5d8c8afc57a6f7d39c60c2994d1770cfcd9de3e49a38d2d2626d43510c'\"", - "module": "__init__", - "msecs": 557.6095581054688, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7045.177221298218, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "__authentificate_create_key__" - ], - "asctime": "2021-02-28 18:59:58,557", - "created": 1614535198.5579183, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", - "module": "__init__", - "msecs": 557.9183101654053, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7045.485973358154, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: key", - "status: okay", - "'53d050f59d7ddd4caf6c2e530df0a70730a4d7411f62d8b2ffc40cc7e5ba530dc0d994e42cb191fb2254c921c1e449633a9183df456ae84ea4fbdea588fefcf5'" - ], - "asctime": "2021-02-28 18:59:58,558", - "created": 1614535198.5582986, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'53d050f59d7ddd4caf6c2e530df0a70730a4d7411f62d8b2ffc40cc7e5ba530dc0d994e42cb191fb2254c921c1e449633a9183df456ae84ea4fbdea588fefcf5'\"", - "module": "__init__", - "msecs": 558.2985877990723, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7045.866250991821, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 33 64 30" - ], - "asctime": "2021-02-28 18:59:58,560", - "created": 1614535198.5603013, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 33 64 30", - "module": "__init__", - "msecs": 560.3013038635254, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7047.868967056274, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 33 64 30" - ], - "asctime": "2021-02-28 18:59:58,569", - "created": 1614535198.569089, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 33 64 30", - "module": "__init__", - "msecs": 569.0889358520508, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7056.6565990448, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,569", - "created": 1614535198.5694885, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 569.488525390625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7057.056188583374, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:58,569", - "created": 1614535198.5697412, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 569.7412490844727, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7057.308912277222, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,570", - "created": 1614535198.5700006, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 570.0006484985352, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7057.568311691284, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,570", - "created": 1614535198.5701694, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 570.1694488525391, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7057.737112045288, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,570", - "created": 1614535198.5704038, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 570.4038143157959, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7057.971477508545, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,570", - "created": 1614535198.5705543, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 570.554256439209, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7058.121919631958, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,570", - "created": 1614535198.5707612, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 570.7612037658691, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7058.328866958618, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,570", - "created": 1614535198.5709064, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 570.906400680542, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7058.474063873291, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,571", - "created": 1614535198.5711021, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 571.1021423339844, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7058.669805526733, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,571", - "created": 1614535198.5712605, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 571.2604522705078, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7058.828115463257, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(64): 35 30 66 35 39 64 37 64 64 64 34 63 61 66 36 63 32 65 35 33 30 64 66 30 61 37 30 37 33 30 61 34 64 37 34 31 31 66 36 32 64 38 62 32 66 66 63 34 30 63 63 37 65 35 62 61 35 33 30 64 63 30 64 39" - ], - "asctime": "2021-02-28 18:59:58,571", - "created": 1614535198.5716574, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 35 30 66 35 39 64 37 64 64 64 34 63 61 66 36 63 32 65 35 33 30 64 66 30 61 37 30 37 33 30 61 34 64 37 34 31 31 66 36 32 64 38 62 32 66 66 63 34 30 63 63 37 65 35 62 61 35 33 30 64 63 30 64 39", - "module": "__init__", - "msecs": 571.6574192047119, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7059.225082397461, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 35 30 66 35 39 64 37 64 64 64 34 63 61 66 36 63 32 65 35 33 30 64 66 30 61 37 30 37 33 30 61 34 64 37 34 31 31 66 36 32 64 38 62 32 66 66 63 34 30 63 63 37 65 35 62 61 35 33 30 64 63 30 64 39" - ], - "asctime": "2021-02-28 18:59:58,580", - "created": 1614535198.5802941, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 35 30 66 35 39 64 37 64 64 64 34 63 61 66 36 63 32 65 35 33 30 64 66 30 61 37 30 37 33 30 61 34 64 37 34 31 31 66 36 32 64 38 62 32 66 66 63 34 30 63 63 37 65 35 62 61 35 33 30 64 63 30 64 39", - "module": "__init__", - "msecs": 580.294132232666, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7067.861795425415, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(64): 39 34 65 34 32 63 62 31 39 31 66 62 32 32 35 34 63 39 32 31 63 31 65 34 34 39 36 33 33 61 39 31 38 33 64 66 34 35 36 61 65 38 34 65 61 34 66 62 64 65 61 35 38 38 66 65 66 63 66 35 22 7d 98 3f" - ], - "asctime": "2021-02-28 18:59:58,581", - "created": 1614535198.5811799, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 39 34 65 34 32 63 62 31 39 31 66 62 32 32 35 34 63 39 32 31 63 31 65 34 34 39 36 33 33 61 39 31 38 33 64 66 34 35 36 61 65 38 34 65 61 34 66 62 64 65 61 35 38 38 66 65 66 63 66 35 22 7d 98 3f", - "module": "__init__", - "msecs": 581.1798572540283, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7068.747520446777, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 39 34 65 34 32 63 62 31 39 31 66 62 32 32 35 34 63 39 32 31 63 31 65 34 34 39 36 33 33 61 39 31 38 33 64 66 34 35 36 61 65 38 34 65 61 34 66 62 64 65 61 35 38 38 66 65 66 63 66 35 22 7d 98 3f" - ], - "asctime": "2021-02-28 18:59:58,589", - "created": 1614535198.5898623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 39 34 65 34 32 63 62 31 39 31 66 62 32 32 35 34 63 39 32 31 63 31 65 34 34 39 36 33 33 61 39 31 38 33 64 66 34 35 36 61 65 38 34 65 61 34 66 62 64 65 61 35 38 38 66 65 66 63 66 35 22 7d 98 3f", - "module": "__init__", - "msecs": 589.8623466491699, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7077.430009841919, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(4): 25 6b 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,590", - "created": 1614535198.590652, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (4): 25 6b 3a 3e", - "module": "__init__", - "msecs": 590.6519889831543, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7078.219652175903, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(4): 25 6b 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,591", - "created": 1614535198.59156, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (4): 25 6b 3a 3e", - "module": "__init__", - "msecs": 591.559886932373, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7079.127550125122, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,591", - "created": 1614535198.5918536, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 591.8536186218262, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7079.421281814575, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:58,592", - "created": 1614535198.592081, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 592.0810699462891, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7079.648733139038, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 33 64 30 35 30 66 35 39 64 37 64 64 64 34 63 61 66 36 63 32 65 35 33 30 64 66 30 61 37 30 37 33 30 61 34 64 37 34 31 31 66 36 32 64 38 62 32 66 66 63 34 30 63 63 37 65 35 62 61 35 33 30 64 63 30 64 39 39 34 65 34 32 63 62 31 39 31 66 62 32 32 35 34 63 39 32 31 63 31 65 34 34 39 36 33 33 61 39 31 38 33 64 66 34 35 36 61 65 38 34 65 61 34 66 62 64 65 61 35 38 38 66 65 66 63 66 35 22 7d 98 3f 25 6b" - ], - "asctime": "2021-02-28 18:59:58,592", - "created": 1614535198.5925333, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 33 64 30 35 30 66 35 39 64 37 64 64 64 34 63 61 66 36 63 32 65 35 33 30 64 66 30 61 37 30 37 33 30 61 34 64 37 34 31 31 66 36 32 64 38 62 32 66 66 63 34 30 63 63 37 65 35 62 61 35 33 30 64 63 30 64 39 39 34 65 34 32 63 62 31 39 31 66 62 32 32 35 34 63 39 32 31 63 31 65 34 34 39 36 33 33 61 39 31 38 33 64 66 34 35 36 61 65 38 34 65 61 34 66 62 64 65 61 35 38 38 66 65 66 63 66 35 22 7d 98 3f 25 6b", - "module": "stp", - "msecs": 592.5333499908447, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7080.101013183594, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: key", - "status: okay", - "'53d050f59d7ddd4caf6c2e530df0a70730a4d7411f62d8b2ffc40cc7e5ba530dc0d994e42cb191fb2254c921c1e449633a9183df456ae84ea4fbdea588fefcf5'" - ], - "asctime": "2021-02-28 18:59:58,592", - "created": 1614535198.5929449, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'53d050f59d7ddd4caf6c2e530df0a70730a4d7411f62d8b2ffc40cc7e5ba530dc0d994e42cb191fb2254c921c1e449633a9183df456ae84ea4fbdea588fefcf5'\"", - "module": "__init__", - "msecs": 592.944860458374, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7080.512523651123, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "__authentificate_check_key__" - ], - "asctime": "2021-02-28 18:59:58,593", - "created": 1614535198.593142, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", - "module": "__init__", - "msecs": 593.142032623291, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7080.70969581604, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:58,593", - "created": 1614535198.5934198, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 593.4197902679443, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7080.987453460693, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" - ], - "asctime": "2021-02-28 18:59:58,594", - "created": 1614535198.5946019, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", - "module": "__init__", - "msecs": 594.6018695831299, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7082.169532775879, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" - ], - "asctime": "2021-02-28 18:59:58,603", - "created": 1614535198.603265, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", - "module": "__init__", - "msecs": 603.2650470733643, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7090.832710266113, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,603", - "created": 1614535198.6035776, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 603.5776138305664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7091.145277023315, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:58,603", - "created": 1614535198.6037474, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 603.7473678588867, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7091.315031051636, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,603", - "created": 1614535198.6039464, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 603.9464473724365, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7091.514110565186, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,604", - "created": 1614535198.6040857, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 604.0856838226318, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7091.653347015381, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,604", - "created": 1614535198.6042886, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 604.2885780334473, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7091.856241226196, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,604", - "created": 1614535198.6044183, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 604.4182777404785, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7091.9859409332275, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,604", - "created": 1614535198.6045961, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 604.5961380004883, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7092.163801193237, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,604", - "created": 1614535198.604721, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 604.7210693359375, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7092.2887325286865, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,604", - "created": 1614535198.6049247, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 604.9246788024902, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7092.492341995239, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,605", - "created": 1614535198.6050565, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 605.0565242767334, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7092.624187469482, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(6): 94 fe 74 32 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,605", - "created": 1614535198.6053016, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", - "module": "__init__", - "msecs": 605.3016185760498, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7092.869281768799, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(6): 94 fe 74 32 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,606", - "created": 1614535198.6064053, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", - "module": "__init__", - "msecs": 606.4052581787109, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7093.97292137146, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,606", - "created": 1614535198.6066878, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 606.6877841949463, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7094.255447387695, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:58,606", - "created": 1614535198.60686, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 606.8599224090576, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7094.427585601807, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 74 72 75 65 7d 94 fe 74 32" - ], - "asctime": "2021-02-28 18:59:58,607", - "created": 1614535198.607112, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 74 72 75 65 7d 94 fe 74 32", - "module": "stp", - "msecs": 607.111930847168, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7094.679594039917, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 18:59:58,607", - "created": 1614535198.607505, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 607.5050830841064, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7095.0727462768555, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-02-28 18:59:58,607", - "created": 1614535198.6076992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 607.6991558074951, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7095.266819000244, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:58,607", - "created": 1614535198.6078482, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentificate_process_feedback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 372, - "message": "prot-client: Got positive authentification feedback", - "module": "__init__", - "msecs": 607.8481674194336, - "msg": "%s Got positive authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7095.415830612183, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - } - ], - "msecs": 619.5058822631836, - "msg": "Performing Authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7107.073545455933, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.01165771484375 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:58,821", - "created": 1614535198.8216336, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 185, - "message": "Transfering a message client -> server", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:58,620", - "created": 1614535198.6202416, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 620.241641998291, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7107.80930519104, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:58,621", - "created": 1614535198.6213863, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 621.3862895965576, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7108.953952789307, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:58,630", - "created": 1614535198.6300204, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 630.0203800201416, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7117.588043212891, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,630", - "created": 1614535198.6303332, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 630.3331851959229, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7117.900848388672, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:58,630", - "created": 1614535198.6305037, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 630.5036544799805, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7118.0713176727295, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,630", - "created": 1614535198.6307337, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 630.7337284088135, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7118.3013916015625, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,630", - "created": 1614535198.6308744, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 630.8743953704834, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7118.442058563232, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,631", - "created": 1614535198.6310802, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 631.080150604248, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7118.647813796997, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,631", - "created": 1614535198.631212, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 631.2119960784912, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7118.77965927124, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,631", - "created": 1614535198.631412, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 631.4120292663574, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7118.979692459106, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,631", - "created": 1614535198.6315398, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 631.5398216247559, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7119.107484817505, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,631", - "created": 1614535198.6317103, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 631.7102909088135, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7119.2779541015625, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,631", - "created": 1614535198.6318357, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 631.8356990814209, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7119.40336227417, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-client:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,632", - "created": 1614535198.6321259, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 632.1258544921875, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7119.6935176849365, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "comm-server:", - "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,636", - "created": 1614535198.6365955, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", - "module": "__init__", - "msecs": 636.5954875946045, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7124.1631507873535, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,637", - "created": 1614535198.6370509, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 637.0508670806885, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7124.6185302734375, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:58,637", - "created": 1614535198.6372316, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 637.2315883636475, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7124.7992515563965, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" - ], - "asctime": "2021-02-28 18:59:58,637", - "created": 1614535198.6375496, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "stp", - "msecs": 637.549638748169, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7125.117301940918, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: 17, data_id: 34", - "status: okay", - "'msg1_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:58,637", - "created": 1614535198.6379719, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 637.9718780517578, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7125.539541244507, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:58,638", - "created": 1614535198.6382008, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 638.2007598876953, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7125.768423080444, - "stack_info": null, - "thread": 140380712453888, - "threadName": "Thread-9" - } - ], - "msecs": 821.6335773468018, - "msg": "Transfering a message client -> server", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7309.201240539551, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.18343281745910645 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:58,822", - "created": 1614535198.8226097, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:58,822", - "created": 1614535198.8222091, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Client send Method): True ()", - "module": "test", - "msecs": 822.2091197967529, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7309.776782989502, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Client send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:58,822", - "created": 1614535198.8224263, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Client send Method): result = True ()", - "module": "test", - "msecs": 822.4263191223145, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7309.9939823150635, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 822.6096630096436, - "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7310.177326202393, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00018334388732910156 - }, - { - "args": [ - "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:58,823", - "created": 1614535198.8233204, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on server side", - "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:58,822", - "created": 1614535198.82294, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", - "module": "test", - "msecs": 822.9401111602783, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7310.507774353027, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on server side", - "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:58,823", - "created": 1614535198.8231294, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", - "module": "test", - "msecs": 823.129415512085, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7310.697078704834, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 823.3203887939453, - "msg": "Received message on server side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7310.888051986694, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00019097328186035156 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:59,025", - "created": 1614535199.0252142, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "blocked_communication_authentification", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 191, - "message": "Transfering a message server -> client", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "TX ->", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:58,823", - "created": 1614535198.8237517, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 450, - "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 823.75168800354, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7311.319351196289, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:58,825", - "created": 1614535198.8250086, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 825.0086307525635, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7312.5762939453125, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" - ], - "asctime": "2021-02-28 18:59:58,833", - "created": 1614535198.8335578, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", - "module": "__init__", - "msecs": 833.5578441619873, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7321.125507354736, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,833", - "created": 1614535198.8339005, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 833.9004516601562, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7321.468114852905, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:58,834", - "created": 1614535198.8340716, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 834.0716361999512, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7321.6392993927, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,834", - "created": 1614535198.8342776, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 834.2776298522949, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7321.845293045044, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,834", - "created": 1614535198.834418, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 834.4180583953857, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7321.985721588135, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,834", - "created": 1614535198.834626, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 834.6259593963623, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7322.193622589111, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,834", - "created": 1614535198.834757, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 834.7570896148682, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7322.324752807617, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,834", - "created": 1614535198.834961, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 834.9609375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7322.528600692749, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,835", - "created": 1614535198.8350937, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 835.0937366485596, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7322.661399841309, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,835", - "created": 1614535198.8352785, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 835.2785110473633, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7322.846174240112, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:58,835", - "created": 1614535198.8354087, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 835.4086875915527, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7322.976350784302, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-server:", - "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,835", - "created": 1614535198.8356879, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", - "module": "__init__", - "msecs": 835.6878757476807, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7323.25553894043, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "comm-client:", - "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" - ], - "asctime": "2021-02-28 18:59:58,840", - "created": 1614535198.8401623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", - "module": "__init__", - "msecs": 840.1622772216797, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7327.729940414429, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:58,840", - "created": 1614535198.8406196, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 840.6195640563965, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7328.1872272491455, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:58,840", - "created": 1614535198.840796, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 840.7959938049316, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7328.363656997681, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" - ], - "asctime": "2021-02-28 18:59:58,841", - "created": 1614535198.8411074, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "stp", - "msecs": 841.1073684692383, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7328.675031661987, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: 17, data_id: 35", - "status: service or data unknown", - "'msg2_data_to_be_transfered'" - ], - "asctime": "2021-02-28 18:59:58,841", - "created": 1614535198.8414977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "ERROR", - "levelno": 40, - "lineno": 450, - "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", - "module": "__init__", - "msecs": 841.4976596832275, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7329.065322875977, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:58,841", - "created": 1614535198.8417568, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 841.7568206787109, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7329.32448387146, - "stack_info": null, - "thread": 140380704061184, - "threadName": "Thread-10" - } - ], - "msecs": 25.214195251464844, - "msg": "Transfering a message server -> client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7512.781858444214, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.1834573745727539 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 18:59:59,026", - "created": 1614535199.0263228, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:59,025", - "created": 1614535199.0258656, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Returnvalue of Server send Method): True ()", - "module": "test", - "msecs": 25.865554809570312, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7513.433218002319, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Returnvalue of Server send Method", - "True", - "" - ], - "asctime": "2021-02-28 18:59:59,026", - "created": 1614535199.0261173, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Returnvalue of Server send Method): result = True ()", - "module": "test", - "msecs": 26.117324829101562, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7513.684988021851, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 26.32284164428711, - "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7513.890504837036, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00020551681518554688 - }, - { - "args": [ - "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:59,027", - "created": 1614535199.027086, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Received message on client side is correct (Content {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Received message on client side", - "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:59,026", - "created": 1614535199.0266466, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", - "module": "test", - "msecs": 26.64661407470703, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7514.214277267456, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Received message on client side", - "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", - "" - ], - "asctime": "2021-02-28 18:59:59,026", - "created": 1614535199.0268502, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", - "module": "test", - "msecs": 26.850223541259766, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7514.417886734009, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 27.08601951599121, - "msg": "Received message on client side is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 7514.65368270874, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002357959747314453 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 1.9819729328155518, - "time_finished": "2021-02-28 18:59:59,027", - "time_start": "2021-02-28 18:59:57,045" - }, - "_Tb-78E4LEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 19:00:05,472", - "created": 1614535205.4729934, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 46, - "message": "_Tb-78E4LEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 472.9933738708496, - "msg": "_Tb-78E4LEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13960.561037063599, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 19:00:05,484", - "created": 1614535205.4847817, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:05,475", - "created": 1614535205.4751768, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 475.1768112182617, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13962.74447441101, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:05,476", - "created": 1614535205.476341, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 476.34100914001465, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13963.908672332764, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:05,476", - "created": 1614535205.4766355, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 476.6354560852051, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13964.203119277954, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:05,477", - "created": 1614535205.4770281, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 477.02813148498535, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13964.595794677734, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:05,477", - "created": 1614535205.4772694, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 477.26941108703613, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13964.837074279785, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:05,477", - "created": 1614535205.47754, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 477.5400161743164, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13965.107679367065, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:05,477", - "created": 1614535205.4777672, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 477.7672290802002, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13965.33489227295, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:05,477", - "created": 1614535205.4779453, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 477.94532775878906, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13965.512990951538, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:05,478", - "created": 1614535205.478109, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 478.10888290405273, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13965.676546096802, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:05,478", - "created": 1614535205.4783041, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 478.3041477203369, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13965.871810913086, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:05,478", - "created": 1614535205.4784896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 478.48963737487793, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13966.057300567627, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:05,478", - "created": 1614535205.478667, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 478.6670207977295, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13966.234683990479, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:05,478", - "created": 1614535205.4788384, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 478.8384437561035, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13966.406106948853, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:05,478", - "created": 1614535205.478992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 478.9919853210449, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13966.559648513794, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:05,479", - "created": 1614535205.4791677, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 479.1676998138428, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13966.735363006592, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:05,479", - "created": 1614535205.4793673, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 479.3672561645508, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13966.9349193573, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:05,479", - "created": 1614535205.4795337, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 479.5336723327637, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13967.101335525513, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:05,479", - "created": 1614535205.4797144, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 479.71439361572266, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13967.282056808472, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:05,479", - "created": 1614535205.4798884, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 479.8884391784668, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13967.456102371216, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:05,480", - "created": 1614535205.4800544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 480.0543785095215, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13967.62204170227, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:05,480", - "created": 1614535205.4802127, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 480.2126884460449, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13967.780351638794, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:05,480", - "created": 1614535205.480366, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 480.3659915924072, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13967.933654785156, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:05,480", - "created": 1614535205.4805243, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 480.52430152893066, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13968.09196472168, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:05,480", - "created": 1614535205.4808424, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 480.84235191345215, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13968.410015106201, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:05,481", - "created": 1614535205.48105, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 481.0500144958496, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13968.617677688599, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:05,481", - "created": 1614535205.481291, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 481.2910556793213, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13968.85871887207, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:05,481", - "created": 1614535205.4814749, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 481.4748764038086, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13969.042539596558, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:05,481", - "created": 1614535205.4816382, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 481.63819313049316, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13969.205856323242, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:05,481", - "created": 1614535205.4818273, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 481.8272590637207, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13969.39492225647, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:05,481", - "created": 1614535205.4819965, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 481.9965362548828, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13969.564199447632, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:05,482", - "created": 1614535205.4821684, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 482.16843605041504, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13969.736099243164, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:05,482", - "created": 1614535205.4823382, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 482.33819007873535, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13969.905853271484, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:05,482", - "created": 1614535205.4825063, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 482.50627517700195, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13970.073938369751, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:05,482", - "created": 1614535205.4826562, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 482.65624046325684, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13970.223903656006, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:05,482", - "created": 1614535205.4828277, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 482.82766342163086, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13970.39532661438, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:05,483", - "created": 1614535205.4830272, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 483.02721977233887, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13970.594882965088, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:05,483", - "created": 1614535205.4831793, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 483.17933082580566, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13970.746994018555, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:05,483", - "created": 1614535205.4833236, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 483.3235740661621, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13970.891237258911, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:05,483", - "created": 1614535205.483472, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 483.4721088409424, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13971.039772033691, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:05,483", - "created": 1614535205.4836376, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 483.63757133483887, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13971.205234527588, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:05,484", - "created": 1614535205.4842098, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 484.2097759246826, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13971.777439117432, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:05,484", - "created": 1614535205.484452, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 484.4520092010498, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13972.019672393799, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:05,484", - "created": 1614535205.4846292, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 484.62915420532227, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13972.196817398071, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 484.78174209594727, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13972.349405288696, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.000152587890625 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:05,830", - "created": 1614535205.8300688, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:05,485", - "created": 1614535205.4850855, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 485.08548736572266, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13972.653150558472, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:05,485", - "created": 1614535205.485241, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 485.2409362792969, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13972.808599472046, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:05,485", - "created": 1614535205.485384, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 485.3839874267578, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13972.951650619507, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:05,485", - "created": 1614535205.4856765, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 485.67652702331543, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13973.244190216064, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:05,486", - "created": 1614535205.4862607, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 486.26065254211426, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13973.828315734863, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:05,486", - "created": 1614535205.4864326, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 486.4325523376465, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13974.000215530396, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:05,486", - "created": 1614535205.486579, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 486.57894134521484, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13974.146604537964, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:05,487", - "created": 1614535205.4873917, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 487.39171028137207, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13974.959373474121, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:05,495", - "created": 1614535205.495915, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 495.9149360656738, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13983.482599258423, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,496", - "created": 1614535205.496239, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 496.23894691467285, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13983.806610107422, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:05,496", - "created": 1614535205.4964244, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 496.42443656921387, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13983.992099761963, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,496", - "created": 1614535205.496633, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 496.63305282592773, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13984.200716018677, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,496", - "created": 1614535205.4967837, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 496.7837333679199, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13984.351396560669, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,497", - "created": 1614535205.497005, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 497.0049858093262, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13984.572649002075, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,497", - "created": 1614535205.4971592, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 497.1592426300049, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13984.726905822754, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,497", - "created": 1614535205.4973629, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 497.3628520965576, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13984.930515289307, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,497", - "created": 1614535205.4975278, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 497.5278377532959, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13985.095500946045, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,497", - "created": 1614535205.4977858, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 497.7858066558838, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13985.353469848633, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,497", - "created": 1614535205.497946, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 497.94602394104004, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13985.513687133789, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:05,498", - "created": 1614535205.4982066, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 498.20661544799805, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13985.774278640747, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:05,499", - "created": 1614535205.4992957, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 499.295711517334, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13986.863374710083, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,499", - "created": 1614535205.499673, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 499.67288970947266, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13987.240552902222, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:05,499", - "created": 1614535205.49992, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 499.9198913574219, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13987.48755455017, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:05,500", - "created": 1614535205.5002906, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 500.2906322479248, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13987.858295440674, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:05,500", - "created": 1614535205.500844, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 500.84400177001953, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13988.411664962769, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:05,501", - "created": 1614535205.5011628, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 501.1627674102783, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13988.730430603027, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:05,501", - "created": 1614535205.50161, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 501.61004066467285, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13989.177703857422, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:05,503", - "created": 1614535205.503153, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 503.15308570861816, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13990.720748901367, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:05,511", - "created": 1614535205.5117972, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 511.7971897125244, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13999.364852905273, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,512", - "created": 1614535205.5121508, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 512.150764465332, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13999.718427658081, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:05,512", - "created": 1614535205.512352, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 512.3519897460938, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13999.919652938843, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,512", - "created": 1614535205.512587, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 512.5870704650879, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14000.154733657837, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,512", - "created": 1614535205.5127711, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 512.7711296081543, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14000.338792800903, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,513", - "created": 1614535205.51303, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 513.0300521850586, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14000.597715377808, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,513", - "created": 1614535205.5131938, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 513.1938457489014, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14000.76150894165, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,513", - "created": 1614535205.5134208, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 513.420820236206, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14000.988483428955, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,513", - "created": 1614535205.5135875, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 513.587474822998, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14001.155138015747, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,513", - "created": 1614535205.5138493, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 513.8492584228516, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14001.4169216156, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,513", - "created": 1614535205.513998, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 513.9980316162109, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14001.56569480896, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:05,514", - "created": 1614535205.5144463, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 514.4462585449219, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14002.01392173767, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:05,515", - "created": 1614535205.515693, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 515.692949295044, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14003.260612487793, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,516", - "created": 1614535205.5160043, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 516.0043239593506, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14003.5719871521, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:05,516", - "created": 1614535205.516201, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 516.2010192871094, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14003.768682479858, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:05,516", - "created": 1614535205.516501, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 516.5009498596191, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14004.068613052368, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:05,516", - "created": 1614535205.5169349, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 516.934871673584, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14004.502534866333, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:05,517", - "created": 1614535205.5171552, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 517.1551704406738, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14004.722833633423, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - } - ], - "msecs": 830.068826675415, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14317.636489868164, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.3129136562347412 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:05,831", - "created": 1614535205.8311908, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_did_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "Registering a correct working Callback", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback__'", - "10", - "None" - ], - "asctime": "2021-02-28 19:00:05,830", - "created": 1614535205.830792, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=None", - "module": "__init__", - "msecs": 830.7919502258301, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14318.35961341858, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 831.190824508667, - "msg": "Registering a correct working Callback", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14318.758487701416, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00039887428283691406 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:06,033", - "created": 1614535206.0335257, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_did_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 135, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 19:00:05,831", - "created": 1614535205.8317013, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 831.7012786865234, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14319.268941879272, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" - ], - "asctime": "2021-02-28 19:00:05,833", - "created": 1614535205.8330407, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", - "module": "__init__", - "msecs": 833.040714263916, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14320.608377456665, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" - ], - "asctime": "2021-02-28 19:00:05,842", - "created": 1614535205.842023, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", - "module": "__init__", - "msecs": 842.0228958129883, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14329.590559005737, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,842", - "created": 1614535205.8424387, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 842.4386978149414, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14330.00636100769, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:05,842", - "created": 1614535205.842666, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 842.6659107208252, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14330.233573913574, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,842", - "created": 1614535205.8429353, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 842.93532371521, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14330.502986907959, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,843", - "created": 1614535205.843116, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 843.116044998169, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14330.683708190918, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,843", - "created": 1614535205.8433793, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 843.3792591094971, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14330.946922302246, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,843", - "created": 1614535205.8435526, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 843.5525894165039, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14331.120252609253, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,843", - "created": 1614535205.843816, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 843.8160419464111, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14331.38370513916, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,844", - "created": 1614535205.8440058, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 844.005823135376, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14331.573486328125, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,844", - "created": 1614535205.8442035, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 844.2034721374512, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14331.7711353302, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,844", - "created": 1614535205.8443506, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 844.3505764007568, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14331.918239593506, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-client:", - "(5): 5b f5 78 3a 3e" - ], - "asctime": "2021-02-28 19:00:05,844", - "created": 1614535205.8446503, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", - "module": "__init__", - "msecs": 844.6502685546875, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14332.217931747437, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(5): 5b f5 78 3a 3e" - ], - "asctime": "2021-02-28 19:00:05,845", - "created": 1614535205.8456402, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", - "module": "__init__", - "msecs": 845.6401824951172, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14333.207845687866, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,845", - "created": 1614535205.8459933, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 845.9932804107666, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14333.560943603516, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:05,846", - "created": 1614535205.846192, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 846.1918830871582, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14333.759546279907, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:05,846", - "created": 1614535205.8464708, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 846.470832824707, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14334.038496017456, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 19:00:05,846", - "created": 1614535205.8469083, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 846.9083309173584, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14334.475994110107, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "__callback__" - ], - "asctime": "2021-02-28 19:00:05,847", - "created": 1614535205.8471303, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback__ to process received data", - "module": "__init__", - "msecs": 847.130298614502, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14334.697961807251, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 19:00:05,847", - "created": 1614535205.8474035, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 847.4035263061523, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14334.971189498901, - "stack_info": null, - "thread": 140379655497472, - "threadName": "Thread-21" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" - ], - "asctime": "2021-02-28 19:00:05,848", - "created": 1614535205.8483381, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", - "module": "__init__", - "msecs": 848.3381271362305, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14335.90579032898, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" - ], - "asctime": "2021-02-28 19:00:05,856", - "created": 1614535205.8569639, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", - "module": "__init__", - "msecs": 856.9638729095459, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14344.531536102295, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,857", - "created": 1614535205.8573284, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 857.3284149169922, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14344.896078109741, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:05,857", - "created": 1614535205.8575306, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 857.5305938720703, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14345.09825706482, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,857", - "created": 1614535205.8578002, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 857.8002452850342, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14345.367908477783, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,857", - "created": 1614535205.8579776, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 857.9776287078857, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14345.545291900635, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,858", - "created": 1614535205.8582463, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 858.2463264465332, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14345.813989639282, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,858", - "created": 1614535205.858398, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 858.3979606628418, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14345.96562385559, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,858", - "created": 1614535205.858609, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 858.6089611053467, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14346.176624298096, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,858", - "created": 1614535205.8587573, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 858.7572574615479, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14346.324920654297, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,858", - "created": 1614535205.858953, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 858.9529991149902, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14346.52066230774, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,859", - "created": 1614535205.8591104, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 859.1103553771973, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14346.678018569946, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-server:", - "(5): e1 8c bb 3a 3e" - ], - "asctime": "2021-02-28 19:00:05,859", - "created": 1614535205.8593874, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", - "module": "__init__", - "msecs": 859.3873977661133, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14346.955060958862, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "comm-client:", - "(5): e1 8c bb 3a 3e" - ], - "asctime": "2021-02-28 19:00:05,860", - "created": 1614535205.8606277, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", - "module": "__init__", - "msecs": 860.6276512145996, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14348.195314407349, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,860", - "created": 1614535205.8609285, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 860.9285354614258, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14348.496198654175, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:05,861", - "created": 1614535205.8611326, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 861.1326217651367, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14348.700284957886, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" - ], - "asctime": "2021-02-28 19:00:05,861", - "created": 1614535205.8614323, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "stp", - "msecs": 861.4323139190674, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14348.999977111816, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 19:00:05,861", - "created": 1614535205.86191, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 861.9101047515869, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14349.477767944336, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:05,862", - "created": 1614535205.8621883, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 862.1883392333984, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14349.756002426147, - "stack_info": null, - "thread": 140379647104768, - "threadName": "Thread-22" - } - ], - "msecs": 33.525705337524414, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14521.093368530273, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.17133736610412598 - }, - { - "args": [ - "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", - "" - ], - "asctime": "2021-02-28 19:00:06,034", - "created": 1614535206.0346556, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", - "" - ], - "asctime": "2021-02-28 19:00:06,034", - "created": 1614535206.0341773, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", - "module": "test", - "msecs": 34.177303314208984, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14521.744966506958, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", - "" - ], - "asctime": "2021-02-28 19:00:06,034", - "created": 1614535206.0344546, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", - "module": "test", - "msecs": 34.4545841217041, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14522.022247314453, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 34.65557098388672, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14522.223234176636, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002009868621826172 - }, - { - "args": [ - "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", - "" - ], - "asctime": "2021-02-28 19:00:06,035", - "created": 1614535206.0352933, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", - "" - ], - "asctime": "2021-02-28 19:00:06,034", - "created": 1614535206.0349445, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", - "module": "test", - "msecs": 34.94453430175781, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14522.512197494507, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", - "" - ], - "asctime": "2021-02-28 19:00:06,035", - "created": 1614535206.0351262, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", - "module": "test", - "msecs": 35.1262092590332, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14522.693872451782, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 35.2933406829834, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14522.861003875732, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001671314239501953 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.5622999668121338, - "time_finished": "2021-02-28 19:00:06,035", - "time_start": "2021-02-28 19:00:05,472" - }, - "_XzMFcHYZEem_kd-7nxt1sg": { - "args": null, - "asctime": "2021-02-28 18:59:51,634", - "created": 1614535191.6349878, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 26, - "message": "_XzMFcHYZEem_kd-7nxt1sg", - "module": "__init__", - "moduleLogger": [], - "msecs": 634.9878311157227, - "msg": "_XzMFcHYZEem_kd-7nxt1sg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 122.55549430847168, - "stack_info": null, - "testcaseLogger": [ - { - "args": [ - "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" - ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.6353738, - "exc_info": null, - "exc_text": null, - "filename": "test_message_object.py", - "funcName": "check_presence_of_key_in_message_object", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 10, - "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", - "module": "test_message_object", - "moduleLogger": [], - "msecs": 635.3738307952881, - "msg": "Creating empty message object: %s", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 122.94149398803711, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "'status'" - ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.6356516, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "in_list_dict_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 242, + "lineno": 328, "message": "status is part of the message object is correct ('status' is in the list or dict).", "module": "test", "moduleLogger": [ @@ -140925,9 +1578,8 @@ "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", "" ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.6355357, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.1514657, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -140936,15 +1588,15 @@ "lineno": 22, "message": "Result (status is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", "module": "test", - "msecs": 635.535717010498, + "msecs": 151.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.10338020324707, + "relativeCreated": 55.15241622924805, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -140952,48 +1604,46 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.6355977, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.1515133, "exc_text": null, "filename": "test.py", "funcName": "__report_expectation_inlist__", "levelname": "DEBUG", "levelno": 10, - "lineno": 30, + "lineno": 42, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 635.5977058410645, + "msecs": 151.0, "msg": "Expectation (%s): %s in result", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.16536903381348, + "relativeCreated": 55.20009994506836, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 635.6515884399414, + "msecs": 151.0, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.21925163269043, + "relativeCreated": 55.24325370788574, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 5.3882598876953125e-05 + "time_consumption": 4.315376281738281e-05 }, { "args": [ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.6357372, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.1516259, "exc_text": null, "filename": "test_message_object.py", "funcName": "check_presence_of_key_in_message_object", @@ -141003,15 +1653,15 @@ "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "module": "test_message_object", "moduleLogger": [], - "msecs": 635.7371807098389, + "msecs": 151.0, "msg": "Creating a maximum message object: %s", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_message_object.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_message_object.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.30484390258789, + "relativeCreated": 55.3126335144043, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -141019,15 +1669,14 @@ "args": [ "'status'" ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.6358972, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.1517706, "exc_text": null, "filename": "test.py", "funcName": "in_list_dict_chk", "levelname": "INFO", "levelno": 20, - "lineno": 242, + "lineno": 328, "message": "status is part of the message object is correct ('status' is in the list or dict).", "module": "test", "moduleLogger": [ @@ -141037,9 +1686,8 @@ "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", "" ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.6358125, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.1516862, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -141048,15 +1696,15 @@ "lineno": 22, "message": "Result (status is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", "module": "test", - "msecs": 635.812520980835, + "msecs": 151.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.38018417358398, + "relativeCreated": 55.37295341491699, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141064,55 +1712,53 @@ "status is part of the message object", "'status'" ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.6358569, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.1517308, "exc_text": null, "filename": "test.py", "funcName": "__report_expectation_inlist__", "levelname": "DEBUG", "levelno": 10, - "lineno": 30, + "lineno": 42, "message": "Expectation (status is part of the message object): 'status' in result", "module": "test", - "msecs": 635.8568668365479, + "msecs": 151.0, "msg": "Expectation (%s): %s in result", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.42453002929688, + "relativeCreated": 55.417537689208984, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 635.897159576416, + "msecs": 151.0, "msg": "status is part of the message object is correct (%s is in the list or dict).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.46482276916504, + "relativeCreated": 55.457353591918945, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 4.029273986816406e-05 + "time_consumption": 3.981590270996094e-05 }, { "args": [ "'S'", "" ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.6360672, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.151924, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Content in message object for status is correct (Content 'S' and Type is ).", "module": "test", "moduleLogger": [ @@ -141122,9 +1768,8 @@ "'S'", "" ], - "asctime": "2021-02-28 18:59:51,635", - "created": 1614535191.635972, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.151839, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -141133,93 +1778,1078 @@ "lineno": 22, "message": "Result (Content in message object for status): 'S' ()", "module": "test", - "msecs": 635.9720230102539, + "msecs": 151.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.53968620300293, + "relativeCreated": 55.525779724121094, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Content in message object for status", + "=", "'S'", "" ], - "asctime": "2021-02-28 18:59:51,636", - "created": 1614535191.636016, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,151", + "created": 1742744816.151881, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Content in message object for status): result = 'S' ()", "module": "test", - "msecs": 636.0158920288086, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 151.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.58355522155762, + "relativeCreated": 55.56774139404297, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 636.0671520233154, + "msecs": 151.0, "msg": "Content in message object for status is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 123.63481521606445, + "relativeCreated": 55.61065673828125, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 5.125999450683594e-05 + "time_consumption": 4.291534423828125e-05 } ], - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0010793209075927734, - "time_finished": "2021-02-28 18:59:51,636", - "time_start": "2021-02-28 18:59:51,634" + "time_consumption": 0.0007436275482177734, + "time_finished": "2025-03-23 16:46:56,151", + "time_start": "2025-03-23 16:46:56,151" }, - "_YfrfUE4LEeupHeIYRnC0qw": { + "REQ-0002": { "args": null, - "asctime": "2021-02-28 19:00:06,035", - "created": 1614535206.0358934, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1520581, "exc_text": null, "filename": "__init__.py", - "funcName": "testrun", + "funcName": "testCase", "levelname": "INFO", "levelno": 20, - "lineno": 47, - "message": "_YfrfUE4LEeupHeIYRnC0qw", + "lineno": 327, + "message": "REQ-0002", "module": "__init__", "moduleLogger": [], - "msecs": 35.89344024658203, - "msg": "_YfrfUE4LEeupHeIYRnC0qw", + "msecs": 152.0, + "msg": "REQ-0002", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14523.461103439331, + "relativeCreated": 55.74488639831543, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.152138, + "exc_text": null, + "filename": "test_message_object.py", + "funcName": "check_presence_of_key_in_message_object", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 10, + "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", + "module": "test_message_object", + "moduleLogger": [], + "msecs": 152.0, + "msg": "Creating empty message object: %s", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_message_object.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 55.82475662231445, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "'service_id'" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.15227, + "exc_text": null, + "filename": "test.py", + "funcName": "in_list_dict_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 328, + "message": "service_id is part of the message object is correct ('service_id' is in the list or dict).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "service_id is part of the message object", + "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", + "" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1521983, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (service_id is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", + "module": "test", + "msecs": 152.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 55.88507652282715, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "service_id is part of the message object", + "'service_id'" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.152236, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_inlist__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Expectation (service_id is part of the message object): 'service_id' in result", + "module": "test", + "msecs": 152.0, + "msg": "Expectation (%s): %s in result", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 55.922746658325195, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 152.0, + "msg": "service_id is part of the message object is correct (%s is in the list or dict).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 55.95684051513672, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.409385681152344e-05 + }, + { + "args": [ + "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1523347, + "exc_text": null, + "filename": "test_message_object.py", + "funcName": "check_presence_of_key_in_message_object", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 19, + "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", + "module": "test_message_object", + "moduleLogger": [], + "msecs": 152.0, + "msg": "Creating a maximum message object: %s", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_message_object.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.02145195007324, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "'service_id'" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1524646, + "exc_text": null, + "filename": "test.py", + "funcName": "in_list_dict_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 328, + "message": "service_id is part of the message object is correct ('service_id' is in the list or dict).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "service_id is part of the message object", + "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", + "" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.152392, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (service_id is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", + "module": "test", + "msecs": 152.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.07867240905762, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "service_id is part of the message object", + "'service_id'" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1524296, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_inlist__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Expectation (service_id is part of the message object): 'service_id' in result", + "module": "test", + "msecs": 152.0, + "msg": "Expectation (%s): %s in result", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.116342544555664, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 152.0, + "msg": "service_id is part of the message object is correct (%s is in the list or dict).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.151390075683594, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.504753112792969e-05 + }, + { + "args": [ + "'SID'", + "" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1525986, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Content in message object for service_id is correct (Content 'SID' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Content in message object for service_id", + "'SID'", + "" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1525264, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Content in message object for service_id): 'SID' ()", + "module": "test", + "msecs": 152.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.2131404876709, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Content in message object for service_id", + "=", + "'SID'", + "" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1525629, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Content in message object for service_id): result = 'SID' ()", + "module": "test", + "msecs": 152.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.24961853027344, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 152.0, + "msg": "Content in message object for service_id is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.28538131713867, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.5762786865234375e-05 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0005404949188232422, + "time_finished": "2025-03-23 16:46:56,152", + "time_start": "2025-03-23 16:46:56,152" + }, + "REQ-0003": { + "args": null, + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1527145, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0003", + "module": "__init__", + "moduleLogger": [], + "msecs": 152.0, + "msg": "REQ-0003", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.40125274658203, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.152782, + "exc_text": null, + "filename": "test_message_object.py", + "funcName": "check_presence_of_key_in_message_object", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 10, + "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", + "module": "test_message_object", + "moduleLogger": [], + "msecs": 152.0, + "msg": "Creating empty message object: %s", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_message_object.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.46872520446777, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "'data_id'" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1529086, + "exc_text": null, + "filename": "test.py", + "funcName": "in_list_dict_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 328, + "message": "data_id is part of the message object is correct ('data_id' is in the list or dict).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "data_id is part of the message object", + "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", + "" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1528397, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (data_id is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", + "module": "test", + "msecs": 152.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.52642250061035, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "data_id is part of the message object", + "'data_id'" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1528757, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_inlist__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Expectation (data_id is part of the message object): 'data_id' in result", + "module": "test", + "msecs": 152.0, + "msg": "Expectation (%s): %s in result", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.56242370605469, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 152.0, + "msg": "data_id is part of the message object is correct (%s is in the list or dict).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.5953254699707, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.2901763916015625e-05 + }, + { + "args": [ + "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" + ], + "asctime": "2025-03-23 16:46:56,152", + "created": 1742744816.1529686, + "exc_text": null, + "filename": "test_message_object.py", + "funcName": "check_presence_of_key_in_message_object", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 19, + "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", + "module": "test_message_object", + "moduleLogger": [], + "msecs": 152.0, + "msg": "Creating a maximum message object: %s", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_message_object.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.6554069519043, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "'data_id'" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1530962, + "exc_text": null, + "filename": "test.py", + "funcName": "in_list_dict_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 328, + "message": "data_id is part of the message object is correct ('data_id' is in the list or dict).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "data_id is part of the message object", + "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1530256, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (data_id is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", + "module": "test", + "msecs": 153.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.71238899230957, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "data_id is part of the message object", + "'data_id'" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1530628, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_inlist__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Expectation (data_id is part of the message object): 'data_id' in result", + "module": "test", + "msecs": 153.0, + "msg": "Expectation (%s): %s in result", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.749582290649414, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 153.0, + "msg": "data_id is part of the message object is correct (%s is in the list or dict).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.78296089172363, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.337860107421875e-05 + }, + { + "args": [ + "'DID'", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1532323, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Content in message object for data_id is correct (Content 'DID' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Content in message object for data_id", + "'DID'", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1531596, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Content in message object for data_id): 'DID' ()", + "module": "test", + "msecs": 153.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.84638023376465, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Content in message object for data_id", + "=", + "'DID'", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1531968, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Content in message object for data_id): result = 'DID' ()", + "module": "test", + "msecs": 153.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.88357353210449, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 153.0, + "msg": "Content in message object for data_id is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 56.919097900390625, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.552436828613281e-05 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0005178451538085938, + "time_finished": "2025-03-23 16:46:56,153", + "time_start": "2025-03-23 16:46:56,152" + }, + "REQ-0004": { + "args": null, + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1533446, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0004", + "module": "__init__", + "moduleLogger": [], + "msecs": 153.0, + "msg": "REQ-0004", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.03139305114746, + "stack_info": null, + "testcaseLogger": [ + { + "args": [ + "{'data': None, 'data_id': None, 'service_id': None, 'status': None}" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1534119, + "exc_text": null, + "filename": "test_message_object.py", + "funcName": "check_presence_of_key_in_message_object", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 10, + "message": "Creating empty message object: {'data': None, 'data_id': None, 'service_id': None, 'status': None}", + "module": "test_message_object", + "moduleLogger": [], + "msecs": 153.0, + "msg": "Creating empty message object: %s", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_message_object.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.0986270904541, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "'data'" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1535401, + "exc_text": null, + "filename": "test.py", + "funcName": "in_list_dict_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 328, + "message": "data is part of the message object is correct ('data' is in the list or dict).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "data is part of the message object", + "{'data': None, 'data_id': None, 'service_id': None, 'status': None}", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.15347, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (data is part of the message object): {'data': None, 'data_id': None, 'service_id': None, 'status': None} ()", + "module": "test", + "msecs": 153.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.15680122375488, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "data is part of the message object", + "'data'" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1535056, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_inlist__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Expectation (data is part of the message object): 'data' in result", + "module": "test", + "msecs": 153.0, + "msg": "Expectation (%s): %s in result", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.192325592041016, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 153.0, + "msg": "data is part of the message object is correct (%s is in the list or dict).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.22689628601074, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.457069396972656e-05 + }, + { + "args": [ + "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1535997, + "exc_text": null, + "filename": "test_message_object.py", + "funcName": "check_presence_of_key_in_message_object", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 19, + "message": "Creating a maximum message object: {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", + "module": "test_message_object", + "moduleLogger": [], + "msecs": 153.0, + "msg": "Creating a maximum message object: %s", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_message_object.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.28650093078613, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "'data'" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1537223, + "exc_text": null, + "filename": "test.py", + "funcName": "in_list_dict_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 328, + "message": "data is part of the message object is correct ('data' is in the list or dict).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "data is part of the message object", + "{'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'}", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1536558, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (data is part of the message object): {'data': 'D', 'data_id': 'DID', 'service_id': 'SID', 'status': 'S'} ()", + "module": "test", + "msecs": 153.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.342529296875, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "data is part of the message object", + "'data'" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1536906, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_inlist__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 42, + "message": "Expectation (data is part of the message object): 'data' in result", + "module": "test", + "msecs": 153.0, + "msg": "Expectation (%s): %s in result", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.37733840942383, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 153.0, + "msg": "data is part of the message object is correct (%s is in the list or dict).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.409048080444336, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.170967102050781e-05 + }, + { + "args": [ + "'D'", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1538537, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Content in message object for data is correct (Content 'D' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Content in message object for data", + "'D'", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1537805, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Content in message object for data): 'D' ()", + "module": "test", + "msecs": 153.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.46722221374512, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Content in message object for data", + "=", + "'D'", + "" + ], + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.1538184, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Content in message object for data): result = 'D' ()", + "module": "test", + "msecs": 153.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.505130767822266, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 153.0, + "msg": "Content in message object for data is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.5404167175293, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 3.528594970703125e-05 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0005090236663818359, + "time_finished": "2025-03-23 16:46:56,153", + "time_start": "2025-03-23 16:46:56,153" + }, + "REQ-0005": { + "args": null, + "asctime": "2025-03-23 16:46:56,153", + "created": 1742744816.153967, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0005", + "module": "__init__", + "moduleLogger": [], + "msecs": 153.0, + "msg": "REQ-0005", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 57.65366554260254, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-02-28 19:00:06,046", - "created": 1614535206.0467818, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1566048, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -141233,9 +2863,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:06,037", - "created": 1614535206.0371437, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,154", + "created": 1742744816.1543663, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -141244,24 +2873,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 37.143707275390625, + "msecs": 154.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14524.71137046814, + "relativeCreated": 58.053016662597656, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:06,038", - "created": 1614535206.038344, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,154", + "created": 1742744816.1546237, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -141270,24 +2898,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 38.34390640258789, + "msecs": 154.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14525.911569595337, + "relativeCreated": 58.310508728027344, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:06,038", - "created": 1614535206.038636, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,154", + "created": 1742744816.1547942, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", @@ -141296,41 +2923,40 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 38.635969161987305, + "msecs": 154.0, "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14526.203632354736, + "relativeCreated": 58.48097801208496, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:06,039", - "created": 1614535206.0390315, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,154", + "created": 1742744816.1549063, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 39.0315055847168, + "msecs": 154.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14526.599168777466, + "relativeCreated": 58.593034744262695, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141339,26 +2965,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:06,039", - "created": 1614535206.0392497, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,154", + "created": 1742744816.154962, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 39.24965858459473, + "msecs": 154.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14526.817321777344, + "relativeCreated": 58.64882469177246, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141366,9 +2991,8 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:06,039", - "created": 1614535206.0395074, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155027, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141377,15 +3001,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 39.507389068603516, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14527.075052261353, + "relativeCreated": 58.713674545288086, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141393,9 +3017,8 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:06,039", - "created": 1614535206.039695, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155069, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141404,15 +3027,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 39.695024490356445, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14527.262687683105, + "relativeCreated": 58.75587463378906, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141420,9 +3043,8 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:06,039", - "created": 1614535206.0398648, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155107, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141431,15 +3053,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 39.86477851867676, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14527.432441711426, + "relativeCreated": 58.79378318786621, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141447,9 +3069,8 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:06,040", - "created": 1614535206.040026, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155146, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141458,15 +3079,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 40.025949478149414, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14527.593612670898, + "relativeCreated": 58.832645416259766, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141476,26 +3097,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:06,040", - "created": 1614535206.0402386, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1551952, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 40.23861885070801, + "msecs": 155.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14527.806282043457, + "relativeCreated": 58.88199806213379, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141505,26 +3125,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:06,040", - "created": 1614535206.0404363, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1552384, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 40.4362678527832, + "msecs": 155.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14528.003931045532, + "relativeCreated": 58.92515182495117, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141534,26 +3153,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:06,040", - "created": 1614535206.040614, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155279, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 40.61388969421387, + "msecs": 155.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14528.181552886963, + "relativeCreated": 58.96568298339844, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141563,52 +3181,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:06,040", - "created": 1614535206.0408006, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155318, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 40.80057144165039, + "msecs": 155.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14528.3682346344, + "relativeCreated": 59.004783630371094, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:06,040", - "created": 1614535206.040957, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1553586, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 40.956974029541016, + "msecs": 155.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14528.52463722229, + "relativeCreated": 59.04531478881836, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141617,26 +3233,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:06,041", - "created": 1614535206.0411353, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1554265, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 41.135311126708984, + "msecs": 155.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14528.702974319458, + "relativeCreated": 59.113264083862305, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141644,9 +3259,8 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:06,041", - "created": 1614535206.0413418, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1554732, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141655,15 +3269,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 41.34178161621094, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14528.90944480896, + "relativeCreated": 59.15999412536621, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141671,9 +3285,8 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:06,042", - "created": 1614535206.0420372, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1555116, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141682,15 +3295,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 42.037248611450195, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14529.6049118042, + "relativeCreated": 59.19837951660156, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141700,26 +3313,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:06,042", - "created": 1614535206.042249, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1555514, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 42.24896430969238, + "msecs": 155.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14529.816627502441, + "relativeCreated": 59.23819541931152, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141729,26 +3341,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:06,042", - "created": 1614535206.0424392, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155593, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 42.43922233581543, + "msecs": 155.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14530.006885528564, + "relativeCreated": 59.279680252075195, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141757,26 +3368,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:06,042", - "created": 1614535206.0426147, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155633, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 42.61469841003418, + "msecs": 155.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14530.182361602783, + "relativeCreated": 59.31973457336426, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141785,26 +3395,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:06,042", - "created": 1614535206.042791, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155669, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 42.790889739990234, + "msecs": 155.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14530.35855293274, + "relativeCreated": 59.355735778808594, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141813,78 +3422,75 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:06,042", - "created": 1614535206.0429633, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155704, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 42.963266372680664, + "msecs": 155.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14530.53092956543, + "relativeCreated": 59.39078330993652, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:06,043", - "created": 1614535206.043127, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155756, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 43.12705993652344, + "msecs": 155.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14530.694723129272, + "relativeCreated": 59.442758560180664, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:06,043", - "created": 1614535206.0434527, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1558254, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 43.45273971557617, + "msecs": 155.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14531.020402908325, + "relativeCreated": 59.51213836669922, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141893,26 +3499,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:06,043", - "created": 1614535206.0436382, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.155867, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 43.63822937011719, + "msecs": 155.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14531.205892562866, + "relativeCreated": 59.55386161804199, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141920,9 +3525,8 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:06,043", - "created": 1614535206.0438657, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1559186, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141931,15 +3535,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 43.86568069458008, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14531.43334388733, + "relativeCreated": 59.60536003112793, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141947,9 +3551,8 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:06,044", - "created": 1614535206.0440378, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1559577, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141958,15 +3561,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 44.037818908691406, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14531.60548210144, + "relativeCreated": 59.644460678100586, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -141974,9 +3577,8 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:06,044", - "created": 1614535206.0442004, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,155", + "created": 1742744816.1559947, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -141985,15 +3587,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 44.20042037963867, + "msecs": 155.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14531.768083572388, + "relativeCreated": 59.68141555786133, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142001,9 +3603,8 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:06,044", - "created": 1614535206.0443575, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1560311, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -142012,15 +3613,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 44.3575382232666, + "msecs": 156.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14531.925201416016, + "relativeCreated": 59.71789360046387, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142030,26 +3631,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:06,044", - "created": 1614535206.044524, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.15607, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 44.52395439147949, + "msecs": 156.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14532.091617584229, + "relativeCreated": 59.75675582885742, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142059,26 +3659,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:06,044", - "created": 1614535206.0447161, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1561124, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 44.71611976623535, + "msecs": 156.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14532.283782958984, + "relativeCreated": 59.7991943359375, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142088,26 +3687,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:06,044", - "created": 1614535206.04489, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.156151, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 44.88992691040039, + "msecs": 156.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14532.45759010315, + "relativeCreated": 59.83781814575195, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142117,52 +3715,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:06,045", - "created": 1614535206.0450585, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1561913, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 45.058488845825195, + "msecs": 156.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14532.626152038574, + "relativeCreated": 59.87811088562012, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:06,045", - "created": 1614535206.0452313, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1562262, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 45.23134231567383, + "msecs": 156.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14532.799005508423, + "relativeCreated": 59.912919998168945, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142171,26 +3767,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:06,045", - "created": 1614535206.0454035, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1562657, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 45.403480529785156, + "msecs": 156.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14532.971143722534, + "relativeCreated": 59.952497482299805, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142198,9 +3793,8 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:06,045", - "created": 1614535206.0455847, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1563065, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -142209,15 +3803,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 45.584678649902344, + "msecs": 156.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14533.152341842651, + "relativeCreated": 59.99326705932617, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142225,9 +3819,8 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:06,045", - "created": 1614535206.0457692, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.156345, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -142236,15 +3829,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 45.76921463012695, + "msecs": 156.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14533.336877822876, + "relativeCreated": 60.03165245056152, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142254,26 +3847,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:06,045", - "created": 1614535206.0459366, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.156383, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 45.93658447265625, + "msecs": 156.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14533.504247665405, + "relativeCreated": 60.06979942321777, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142283,26 +3875,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:06,046", - "created": 1614535206.046102, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.156422, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 46.102046966552734, + "msecs": 156.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14533.669710159302, + "relativeCreated": 60.10866165161133, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142311,26 +3902,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:06,046", - "created": 1614535206.0462415, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1564612, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 46.24152183532715, + "msecs": 156.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14533.809185028076, + "relativeCreated": 60.148000717163086, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142339,26 +3929,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:06,046", - "created": 1614535206.0463753, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1564975, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 46.375274658203125, + "msecs": 156.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14533.942937850952, + "relativeCreated": 60.18424034118652, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142367,72 +3956,69 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:06,046", - "created": 1614535206.0465074, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1565351, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 46.50735855102539, + "msecs": 156.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14534.075021743774, + "relativeCreated": 60.22191047668457, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:06,046", - "created": 1614535206.0466428, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1565707, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 46.64278030395508, + "msecs": 156.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14534.210443496704, + "relativeCreated": 60.2574348449707, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 46.78177833557129, + "msecs": 156.0, "msg": "Setting up communication", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14534.34944152832, + "relativeCreated": 60.29152870178223, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00013899803161621094 + "time_consumption": 3.409385681152344e-05 }, { "args": [], - "asctime": "2021-02-28 19:00:06,391", - "created": 1614535206.3917863, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,500", + "created": 1742744816.5000348, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -142446,9 +4032,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:06,047", - "created": 1614535206.0470748, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1566997, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -142457,24 +4042,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 47.07479476928711, + "msecs": 156.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14534.642457962036, + "relativeCreated": 60.38641929626465, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:06,047", - "created": 1614535206.0472283, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1567383, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -142483,41 +4067,40 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 47.228336334228516, + "msecs": 156.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14534.795999526978, + "relativeCreated": 60.4250431060791, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:06,047", - "created": 1614535206.0473666, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.156778, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 47.36661911010742, + "msecs": 156.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14534.934282302856, + "relativeCreated": 60.46485900878906, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142528,35 +4111,33 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:06,047", - "created": 1614535206.047604, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,156", + "created": 1742744816.1568518, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 47.60408401489258, + "msecs": 156.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14535.171747207642, + "relativeCreated": 60.538530349731445, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:06,048", - "created": 1614535206.0481791, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,157", + "created": 1742744816.1570745, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -142565,24 +4146,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 48.17914962768555, + "msecs": 157.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14535.746812820435, + "relativeCreated": 60.761213302612305, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:06,048", - "created": 1614535206.0483472, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,157", + "created": 1742744816.15712, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -142591,41 +4171,40 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 48.34723472595215, + "msecs": 157.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14535.914897918701, + "relativeCreated": 60.8067512512207, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:06,048", - "created": 1614535206.0484905, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,157", + "created": 1742744816.1571593, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 48.49052429199219, + "msecs": 157.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14536.058187484741, + "relativeCreated": 60.84609031677246, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -142633,9 +4212,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:06,049", - "created": 1614535206.049038, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,157", + "created": 1742744816.1573033, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -142644,25 +4222,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 49.037933349609375, + "msecs": 157.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14536.605596542358, + "relativeCreated": 60.990095138549805, "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:06,057", - "created": 1614535206.0575593, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,165", + "created": 1742744816.1655254, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -142671,300 +4248,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 57.55925178527832, + "msecs": 165.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14545.126914978027, + "relativeCreated": 69.21219825744629, "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,057", - "created": 1614535206.0579286, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 57.92856216430664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14545.496225357056, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:06,058", - "created": 1614535206.0581481, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 58.14814567565918, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14545.715808868408, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,058", - "created": 1614535206.058367, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 58.367013931274414, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14545.934677124023, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,058", - "created": 1614535206.0585253, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 58.52532386779785, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14546.092987060547, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,058", - "created": 1614535206.05877, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 58.769941329956055, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14546.337604522705, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,058", - "created": 1614535206.0589237, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 58.92372131347656, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14546.491384506226, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,059", - "created": 1614535206.059123, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 59.12303924560547, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14546.690702438354, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,059", - "created": 1614535206.0592678, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 59.26775932312012, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14546.83542251587, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,059", - "created": 1614535206.0594592, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 59.45920944213867, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14547.026872634888, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,059", - "created": 1614535206.0595968, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 59.59677696228027, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14547.16444015503, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:06,059", - "created": 1614535206.0598843, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,165", + "created": 1742744816.165894, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -142973,25 +4274,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 59.88430976867676, + "msecs": 165.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14547.451972961426, + "relativeCreated": 69.5807933807373, "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:06,061", - "created": 1614535206.061165, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,166", + "created": 1742744816.1668832, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -143000,98 +4300,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 61.16509437561035, + "msecs": 166.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14548.73275756836, + "relativeCreated": 70.56999206542969, "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,061", - "created": 1614535206.0614705, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 61.47050857543945, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14549.038171768188, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:06,061", - "created": 1614535206.0616434, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 61.643362045288086, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14549.211025238037, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:06,061", - "created": 1614535206.0619612, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 61.96117401123047, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14549.52883720398, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ @@ -143101,54 +4319,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:06,062", - "created": 1614535206.0623395, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,167", + "created": 1742744816.1671462, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 62.33954429626465, + "msecs": 167.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14549.907207489014, + "relativeCreated": 70.83296775817871, "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-02-28 19:00:06,062", - "created": 1614535206.0625231, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,167", + "created": 1742744816.1672337, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 62.52312660217285, + "msecs": 167.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14550.090789794922, + "relativeCreated": 70.92046737670898, "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ @@ -143158,36 +4374,34 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:06,062", - "created": 1614535206.0627635, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,167", + "created": 1742744816.1673572, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 62.76345252990723, + "msecs": 167.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14550.331115722656, + "relativeCreated": 71.0439682006836, "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:06,064", - "created": 1614535206.0641518, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,167", + "created": 1742744816.1676836, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -143196,25 +4410,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 64.15176391601562, + "msecs": 167.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14551.719427108765, + "relativeCreated": 71.37036323547363, "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:06,072", - "created": 1614535206.0726957, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,175", + "created": 1742744816.175838, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -143223,300 +4436,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 72.69573211669922, + "msecs": 175.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14560.263395309448, + "relativeCreated": 79.52475547790527, "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,073", - "created": 1614535206.0730212, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 73.02117347717285, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14560.588836669922, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:06,073", - "created": 1614535206.0732048, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 73.20475578308105, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14560.77241897583, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,073", - "created": 1614535206.0734134, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 73.41337203979492, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14560.981035232544, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,073", - "created": 1614535206.0735662, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 73.56619834899902, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14561.133861541748, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,073", - "created": 1614535206.073843, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 73.84300231933594, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14561.410665512085, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,074", - "created": 1614535206.0740302, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 74.03016090393066, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14561.59782409668, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,074", - "created": 1614535206.0742269, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 74.22685623168945, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14561.794519424438, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,074", - "created": 1614535206.0744038, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 74.40376281738281, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14561.971426010132, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,074", - "created": 1614535206.0745993, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 74.5992660522461, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14562.166929244995, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,074", - "created": 1614535206.0747354, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 74.73540306091309, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14562.303066253662, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:06,075", - "created": 1614535206.0750132, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,176", + "created": 1742744816.1760433, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -143525,25 +4462,24 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 75.0131607055664, + "msecs": 176.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14562.580823898315, + "relativeCreated": 79.73003387451172, "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:06,076", - "created": 1614535206.0761065, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,176", + "created": 1742744816.1769333, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -143552,98 +4488,16 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 76.10654830932617, + "msecs": 176.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14563.674211502075, + "relativeCreated": 80.62005043029785, "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,076", - "created": 1614535206.076388, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 76.38788223266602, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14563.955545425415, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:06,076", - "created": 1614535206.0765588, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 76.55882835388184, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14564.12649154663, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:06,076", - "created": 1614535206.076843, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 76.8430233001709, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14564.41068649292, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ @@ -143653,3413 +4507,70 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:06,077", - "created": 1614535206.077227, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,177", + "created": 1742744816.1771052, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 77.22711563110352, + "msecs": 177.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14564.794778823853, + "relativeCreated": 80.79195022583008, "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-02-28 19:00:06,077", - "created": 1614535206.077417, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,177", + "created": 1742744816.1771603, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 77.41689682006836, + "msecs": 177.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14564.984560012817, + "relativeCreated": 80.84702491760254, "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" } ], - "msecs": 391.7863368988037, + "msecs": 500.0, "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 14879.354000091553, + "relativeCreated": 403.72157096862793, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.31436944007873535 + "time_consumption": 0.3228745460510254 }, { "args": [], - "asctime": "2021-02-28 19:00:06,392", - "created": 1614535206.3926606, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_sid_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 145, - "message": "Registering a correct working Callback", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-server:", - "'__callback__'", - "None", - "0" - ], - "asctime": "2021-02-28 19:00:06,392", - "created": 1614535206.3924325, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback__' for SID=None and DID=0", - "module": "__init__", - "msecs": 392.43245124816895, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14880.000114440918, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 392.66061782836914, - "msg": "Registering a correct working Callback", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14880.228281021118, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002281665802001953 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:06,594", - "created": 1614535206.5946434, - "exc_info": null, - "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_sid_callback", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 148, - "message": "Transfering data", - "module": "test_callbacks", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 19:00:06,393", - "created": 1614535206.3930914, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 393.09144020080566, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14880.659103393555, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" - ], - "asctime": "2021-02-28 19:00:06,394", - "created": 1614535206.3942354, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", - "module": "__init__", - "msecs": 394.23537254333496, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14881.803035736084, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" - ], - "asctime": "2021-02-28 19:00:06,402", - "created": 1614535206.4027112, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", - "module": "__init__", - "msecs": 402.7111530303955, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14890.278816223145, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,403", - "created": 1614535206.4030118, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 403.0117988586426, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14890.579462051392, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:06,403", - "created": 1614535206.4032009, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 403.2008647918701, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14890.76852798462, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,403", - "created": 1614535206.4034064, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 403.40638160705566, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14890.974044799805, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,403", - "created": 1614535206.4035451, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 403.5451412200928, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14891.112804412842, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,403", - "created": 1614535206.4037476, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 403.74755859375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14891.315221786499, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,403", - "created": 1614535206.4038968, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 403.8968086242676, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14891.464471817017, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,404", - "created": 1614535206.4040883, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 404.08825874328613, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14891.655921936035, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,404", - "created": 1614535206.404218, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 404.2179584503174, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14891.785621643066, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,404", - "created": 1614535206.4043891, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 404.3891429901123, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14891.956806182861, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,404", - "created": 1614535206.404525, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 404.5250415802002, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14892.09270477295, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-client:", - "(5): 5b f5 78 3a 3e" - ], - "asctime": "2021-02-28 19:00:06,404", - "created": 1614535206.4047508, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", - "module": "__init__", - "msecs": 404.7508239746094, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14892.318487167358, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(5): 5b f5 78 3a 3e" - ], - "asctime": "2021-02-28 19:00:06,405", - "created": 1614535206.405715, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", - "module": "__init__", - "msecs": 405.7149887084961, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14893.282651901245, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,405", - "created": 1614535206.405975, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 405.9751033782959, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14893.542766571045, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:06,406", - "created": 1614535206.4061449, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 406.1448574066162, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14893.712520599365, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:06,406", - "created": 1614535206.4063854, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 406.3854217529297, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14893.953084945679, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 19:00:06,406", - "created": 1614535206.406748, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 406.74805641174316, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14894.315719604492, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "__callback__" - ], - "asctime": "2021-02-28 19:00:06,406", - "created": 1614535206.406938, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback__ to process received data", - "module": "__init__", - "msecs": 406.9380760192871, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14894.505739212036, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 19:00:06,407", - "created": 1614535206.4071698, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 407.1698188781738, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14894.737482070923, - "stack_info": null, - "thread": 140379638712064, - "threadName": "Thread-23" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" - ], - "asctime": "2021-02-28 19:00:06,408", - "created": 1614535206.4080336, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", - "module": "__init__", - "msecs": 408.0336093902588, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14895.601272583008, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" - ], - "asctime": "2021-02-28 19:00:06,416", - "created": 1614535206.4166048, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", - "module": "__init__", - "msecs": 416.60475730895996, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14904.172420501709, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,416", - "created": 1614535206.4169247, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 416.92471504211426, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14904.492378234863, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:06,417", - "created": 1614535206.4170988, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 417.0987606048584, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14904.666423797607, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,417", - "created": 1614535206.417299, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 417.2990322113037, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14904.866695404053, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,417", - "created": 1614535206.4174385, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 417.4385070800781, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14905.006170272827, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,417", - "created": 1614535206.4176395, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 417.63949394226074, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14905.20715713501, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,417", - "created": 1614535206.4178503, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 417.8502559661865, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14905.417919158936, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,418", - "created": 1614535206.418041, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 418.0409908294678, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14905.608654022217, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,418", - "created": 1614535206.4181702, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 418.1702136993408, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14905.73787689209, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,418", - "created": 1614535206.4183562, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 418.35618019104004, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14905.923843383789, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,418", - "created": 1614535206.418495, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 418.49493980407715, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14906.062602996826, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-server:", - "(5): e1 8c bb 3a 3e" - ], - "asctime": "2021-02-28 19:00:06,418", - "created": 1614535206.41875, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", - "module": "__init__", - "msecs": 418.7500476837158, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14906.317710876465, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "comm-client:", - "(5): e1 8c bb 3a 3e" - ], - "asctime": "2021-02-28 19:00:06,419", - "created": 1614535206.4197047, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", - "module": "__init__", - "msecs": 419.7046756744385, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14907.272338867188, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,419", - "created": 1614535206.4199624, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 419.96240615844727, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14907.530069351196, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:06,420", - "created": 1614535206.4201515, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 420.1514720916748, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14907.719135284424, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" - ], - "asctime": "2021-02-28 19:00:06,420", - "created": 1614535206.420393, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "stp", - "msecs": 420.3929901123047, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14907.960653305054, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 19:00:06,420", - "created": 1614535206.420768, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 420.76802253723145, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14908.33568572998, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:06,420", - "created": 1614535206.4209883, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 420.9883213043213, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 14908.55598449707, - "stack_info": null, - "thread": 140379630319360, - "threadName": "Thread-24" - } - ], - "msecs": 594.6433544158936, - "msg": "Transfering data", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15082.211017608643, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.17365503311157227 - }, - { - "args": [ - "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", - "" - ], - "asctime": "2021-02-28 19:00:06,595", - "created": 1614535206.5956733, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", - "" - ], - "asctime": "2021-02-28 19:00:06,595", - "created": 1614535206.5952463, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", - "module": "test", - "msecs": 595.2463150024414, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15082.81397819519, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", - "" - ], - "asctime": "2021-02-28 19:00:06,595", - "created": 1614535206.5954752, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", - "module": "test", - "msecs": 595.4751968383789, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15083.042860031128, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 595.6733226776123, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15083.240985870361, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00019812583923339844 - }, - { - "args": [ - "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", - "" - ], - "asctime": "2021-02-28 19:00:06,596", - "created": 1614535206.5963416, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", - "" - ], - "asctime": "2021-02-28 19:00:06,595", - "created": 1614535206.595994, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", - "module": "test", - "msecs": 595.9939956665039, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15083.561658859253, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", - "" - ], - "asctime": "2021-02-28 19:00:06,596", - "created": 1614535206.5961738, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", - "module": "test", - "msecs": 596.1737632751465, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15083.741426467896, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 596.341609954834, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15083.909273147583, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001678466796875 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.560448169708252, - "time_finished": "2021-02-28 19:00:06,596", - "time_start": "2021-02-28 19:00:06,035" - }, - "_YhmzIE4lEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 19:00:10,219", - "created": 1614535210.2191155, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 59, - "message": "_YhmzIE4lEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 219.1154956817627, - "msg": "_YhmzIE4lEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18706.68315887451, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 19:00:10,229", - "created": 1614535210.229547, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:10,220", - "created": 1614535210.220337, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 220.3369140625, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18707.90457725525, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:10,221", - "created": 1614535210.2216396, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 221.63963317871094, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18709.20729637146, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:10,221", - "created": 1614535210.2219586, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 221.95863723754883, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18709.526300430298, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:10,222", - "created": 1614535210.2223759, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 222.37586975097656, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18709.943532943726, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:10,222", - "created": 1614535210.2226255, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 222.6254940032959, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18710.193157196045, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:10,222", - "created": 1614535210.2228897, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 222.88966178894043, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18710.45732498169, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:10,223", - "created": 1614535210.2230833, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 223.0832576751709, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18710.65092086792, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:10,223", - "created": 1614535210.223254, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 223.25396537780762, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18710.821628570557, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:10,223", - "created": 1614535210.223413, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 223.41299057006836, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18710.980653762817, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:10,223", - "created": 1614535210.2236023, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 223.602294921875, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18711.169958114624, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:10,223", - "created": 1614535210.2237885, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 223.78849983215332, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18711.356163024902, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:10,223", - "created": 1614535210.2239668, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 223.9668369293213, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18711.53450012207, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:10,224", - "created": 1614535210.22414, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 224.13992881774902, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18711.707592010498, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:10,224", - "created": 1614535210.2242944, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 224.29442405700684, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18711.862087249756, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:10,224", - "created": 1614535210.2244694, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 224.46942329406738, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18712.037086486816, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:10,224", - "created": 1614535210.2246675, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 224.66754913330078, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18712.23521232605, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:10,224", - "created": 1614535210.2248802, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 224.88021850585938, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18712.44788169861, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:10,225", - "created": 1614535210.2250779, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 225.07786750793457, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18712.645530700684, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:10,225", - "created": 1614535210.2252574, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 225.25739669799805, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18712.825059890747, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:10,225", - "created": 1614535210.2254374, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 225.43740272521973, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18713.00506591797, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:10,225", - "created": 1614535210.2255952, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 225.59523582458496, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18713.162899017334, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:10,225", - "created": 1614535210.225795, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 225.79503059387207, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18713.36269378662, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:10,225", - "created": 1614535210.225961, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 225.96096992492676, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18713.528633117676, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:10,226", - "created": 1614535210.2262943, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 226.29427909851074, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18713.86194229126, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:10,226", - "created": 1614535210.226492, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 226.49192810058594, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18714.059591293335, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:10,226", - "created": 1614535210.2267358, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 226.73583030700684, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18714.303493499756, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:10,226", - "created": 1614535210.2269185, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 226.91845893859863, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18714.486122131348, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:10,227", - "created": 1614535210.2270904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 227.09035873413086, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18714.65802192688, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:10,227", - "created": 1614535210.22725, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 227.2500991821289, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18714.817762374878, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:10,227", - "created": 1614535210.227439, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 227.43892669677734, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18715.006589889526, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:10,227", - "created": 1614535210.2276163, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 227.6163101196289, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18715.183973312378, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:10,227", - "created": 1614535210.2278016, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 227.80156135559082, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18715.36922454834, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:10,227", - "created": 1614535210.227978, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 227.97799110412598, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18715.545654296875, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:10,228", - "created": 1614535210.2281077, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 228.10769081115723, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18715.675354003906, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:10,228", - "created": 1614535210.2282531, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 228.25312614440918, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18715.82078933716, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:10,228", - "created": 1614535210.2284107, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 228.4107208251953, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18715.978384017944, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:10,228", - "created": 1614535210.2285502, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 228.55019569396973, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18716.11785888672, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:10,228", - "created": 1614535210.2286994, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 228.6994457244873, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18716.267108917236, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:10,228", - "created": 1614535210.228847, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 228.84702682495117, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18716.4146900177, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:10,228", - "created": 1614535210.228989, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 228.9888858795166, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18716.556549072266, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:10,229", - "created": 1614535210.2291226, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 229.12263870239258, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18716.69030189514, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:10,229", - "created": 1614535210.229255, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 229.25496101379395, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18716.822624206543, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:10,229", - "created": 1614535210.2293923, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 229.39229011535645, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18716.959953308105, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 229.54702377319336, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18717.114686965942, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015473365783691406 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:10,580", - "created": 1614535210.580752, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:10,230", - "created": 1614535210.230455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 230.4549217224121, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18718.02258491516, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:10,230", - "created": 1614535210.230654, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 230.6540012359619, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18718.22166442871, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:10,230", - "created": 1614535210.2308242, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 230.82423210144043, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18718.39189529419, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:10,231", - "created": 1614535210.2311053, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 231.10532760620117, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18718.67299079895, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:10,231", - "created": 1614535210.2315629, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 231.56285285949707, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18719.130516052246, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:10,231", - "created": 1614535210.2317312, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 231.73117637634277, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18719.29883956909, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:10,236", - "created": 1614535210.2365274, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 236.5274429321289, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18724.095106124878, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" - ], - "asctime": "2021-02-28 19:00:10,236", - "created": 1614535210.236952, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", - "module": "__init__", - "msecs": 236.9520664215088, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18724.519729614258, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "comm-server:", - "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" - ], - "asctime": "2021-02-28 19:00:10,240", - "created": 1614535210.2406392, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", - "module": "__init__", - "msecs": 240.63920974731445, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18728.206872940063, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:10,240", - "created": 1614535210.240971, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 240.97108840942383, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18728.538751602173, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:10,241", - "created": 1614535210.2411604, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 241.16039276123047, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18728.72805595398, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:10,241", - "created": 1614535210.2414134, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 241.41335487365723, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18728.981018066406, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:10,241", - "created": 1614535210.241617, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 241.61696434020996, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18729.18462753296, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - "(17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13" - ], - "asctime": "2021-02-28 19:00:10,241", - "created": 1614535210.2419753, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (17): 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13", - "module": "stp", - "msecs": 241.9753074645996, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18729.54297065735, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:10,242", - "created": 1614535210.2424457, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 242.445707321167, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18730.013370513916, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:10,242", - "created": 1614535210.2426572, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 242.65718460083008, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18730.22484779358, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:10,243", - "created": 1614535210.243009, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 243.00909042358398, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18730.576753616333, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "comm-server:", - "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" - ], - "asctime": "2021-02-28 19:00:10,244", - "created": 1614535210.2441275, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", - "module": "__init__", - "msecs": 244.1275119781494, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18731.6951751709, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "comm-client:", - "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" - ], - "asctime": "2021-02-28 19:00:10,247", - "created": 1614535210.2472382, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", - "module": "__init__", - "msecs": 247.2381591796875, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18734.805822372437, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:10,247", - "created": 1614535210.247487, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 247.48706817626953, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18735.05473136902, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:10,247", - "created": 1614535210.2476609, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 247.66087532043457, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18735.228538513184, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:10,247", - "created": 1614535210.247929, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 247.92909622192383, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18735.496759414673, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:10,248", - "created": 1614535210.248178, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 248.17800521850586, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18735.745668411255, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - "(17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12" - ], - "asctime": "2021-02-28 19:00:10,248", - "created": 1614535210.2484543, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (17): 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12", - "module": "stp", - "msecs": 248.45433235168457, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18736.021995544434, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:10,249", - "created": 1614535210.249074, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 249.07398223876953, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18736.64164543152, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:10,249", - "created": 1614535210.249385, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 249.38511848449707, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18736.952781677246, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - } - ], - "msecs": 580.751895904541, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19068.31955909729, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.33136677742004395 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:10,783", - "created": 1614535210.7832868, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,702", + "created": 1742744816.7024114, "exc_text": null, "filename": "test_communication.py", "funcName": "send_message_object", @@ -147077,218 +4588,130 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-02-28 19:00:10,581", - "created": 1614535210.5815377, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,500", + "created": 1742744816.5007327, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 581.5377235412598, + "msecs": 500.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19069.10538673401, + "relativeCreated": 404.4194221496582, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-client:", - "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 19:00:10,582", - "created": 1614535210.5826647, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,501", + "created": 1742744816.5017366, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 582.6647281646729, + "msecs": 501.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19070.232391357422, + "relativeCreated": 405.4234027862549, "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ "comm-server:", - "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 19:00:10,588", - "created": 1614535210.5889556, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,510", + "created": 1742744816.5103526, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 588.9556407928467, + "msecs": 510.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19076.523303985596, + "relativeCreated": 414.03937339782715, "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ - "STP:", - 58 + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-02-28 19:00:10,589", - "created": 1614535210.589321, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,511", + "created": 1742744816.511127, "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 589.3208980560303, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19076.88856124878, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:10,589", - "created": 1614535210.5895252, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 589.5252227783203, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19077.09288597107, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:10,589", - "created": 1614535210.5899692, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 589.9691581726074, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19077.536821365356, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:10,590", - "created": 1614535210.5901513, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 590.151309967041, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19077.71897315979, - "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" - }, - { - "args": [ - "STP:", - "(41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d" - ], - "asctime": "2021-02-28 19:00:10,590", - "created": 1614535210.5904167, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", + "filename": "__init__.py", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (41): 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d", - "module": "stp", - "msecs": 590.416669845581, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 511.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19077.98433303833, + "relativeCreated": 414.813756942749, "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:46:56,515", + "created": 1742744816.515624, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 515.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 419.3108081817627, + "stack_info": null, + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ @@ -147298,81 +4721,78 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-02-28 19:00:10,591", - "created": 1614535210.5910134, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,516", + "created": 1742744816.5165427, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 591.0134315490723, + "msecs": 516.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19078.58109474182, + "relativeCreated": 420.229434967041, "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:10,591", - "created": 1614535210.591282, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,516", + "created": 1742744816.5168378, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 591.2818908691406, + "msecs": 516.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19078.84955406189, + "relativeCreated": 420.52459716796875, "stack_info": null, - "thread": 140378581755648, - "threadName": "Thread-35" + "thread": 140631315879616, + "threadName": "Thread-1 (_start)" } ], - "msecs": 783.2868099212646, + "msecs": 702.0, "msg": "Transfering a message client -> server", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19270.854473114014, + "relativeCreated": 606.0981750488281, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.19200491905212402 + "time_consumption": 0.18557357788085938 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 19:00:10,784", - "created": 1614535210.7842288, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,703", + "created": 1742744816.7033267, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -147382,9 +4802,8 @@ "True", "" ], - "asctime": "2021-02-28 19:00:10,783", - "created": 1614535210.7838285, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,702", + "created": 1742744816.7029195, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -147393,72 +4812,71 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 783.8284969329834, + "msecs": 702.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19271.396160125732, + "relativeCreated": 606.6062450408936, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Returnvalue of Client send Method", + "=", "True", "" ], - "asctime": "2021-02-28 19:00:10,784", - "created": 1614535210.784044, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,703", + "created": 1742744816.703125, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 784.0440273284912, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 703.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19271.61169052124, + "relativeCreated": 606.8117618560791, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 784.2288017272949, + "msecs": 703.0, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19271.796464920044, + "relativeCreated": 607.013463973999, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00018477439880371094 + "time_consumption": 0.00020170211791992188 }, { "args": [ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-02-28 19:00:10,784", - "created": 1614535210.7848637, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,703", + "created": 1742744816.7039545, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", "module": "test", "moduleLogger": [ @@ -147468,9 +4886,8 @@ "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-02-28 19:00:10,784", - "created": 1614535210.7845163, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,703", + "created": 1742744816.7036142, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -147479,63 +4896,62 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 784.5163345336914, + "msecs": 703.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19272.08399772644, + "relativeCreated": 607.3009967803955, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Received message on server side", + "=", "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", "" ], - "asctime": "2021-02-28 19:00:10,784", - "created": 1614535210.7846963, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,703", + "created": 1742744816.7037878, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", "module": "test", - "msecs": 784.6963405609131, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 703.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19272.264003753662, + "relativeCreated": 607.4745655059814, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 784.8637104034424, + "msecs": 703.0, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19272.43137359619, + "relativeCreated": 607.6412200927734, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00016736984252929688 + "time_consumption": 0.0001666545867919922 }, { "args": [], - "asctime": "2021-02-28 19:00:10,986", - "created": 1614535210.9869158, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,905", + "created": 1742744816.905993, "exc_text": null, "filename": "test_communication.py", "funcName": "send_message_object", @@ -147553,218 +4969,130 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-02-28 19:00:10,785", - "created": 1614535210.7852519, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,704", + "created": 1742744816.7043633, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 785.2518558502197, + "msecs": 704.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19272.81951904297, + "relativeCreated": 608.0501079559326, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:", - "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 19:00:10,786", - "created": 1614535210.7861948, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,705", + "created": 1742744816.7052977, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 786.1948013305664, + "msecs": 705.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19273.762464523315, + "relativeCreated": 608.9844703674316, "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ "comm-client:", - "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 19:00:10,792", - "created": 1614535210.7924228, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,713", + "created": 1742744816.7139485, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 792.4227714538574, + "msecs": 713.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19279.990434646606, + "relativeCreated": 617.6352500915527, "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ - "STP:", - 58 + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-02-28 19:00:10,792", - "created": 1614535210.792824, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,714", + "created": 1742744816.714793, "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 792.8240299224854, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19280.391693115234, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:10,793", - "created": 1614535210.7930706, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 793.0705547332764, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19280.638217926025, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:10,793", - "created": 1614535210.7934759, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 793.475866317749, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19281.043529510498, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:10,793", - "created": 1614535210.7936442, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 793.6441898345947, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 19281.211853027344, - "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" - }, - { - "args": [ - "STP:", - "(41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b" - ], - "asctime": "2021-02-28 19:00:10,793", - "created": 1614535210.7939448, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", + "filename": "__init__.py", + "funcName": "__tx__", "levelname": "INFO", "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (41): 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b", - "module": "stp", - "msecs": 793.9448356628418, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 714.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19281.51249885559, + "relativeCreated": 618.4797286987305, "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2025-03-23 16:46:56,719", + "created": 1742744816.7192874, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 719.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 622.974157333374, + "stack_info": null, + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ @@ -147774,81 +5102,78 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-02-28 19:00:10,794", - "created": 1614535210.7944949, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,720", + "created": 1742744816.7201972, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 794.4948673248291, + "msecs": 720.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19282.062530517578, + "relativeCreated": 623.8839626312256, "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:10,794", - "created": 1614535210.7947686, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,720", + "created": 1742744816.7204838, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 794.7685718536377, + "msecs": 720.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19282.336235046387, + "relativeCreated": 624.1705417633057, "stack_info": null, - "thread": 140378573362944, - "threadName": "Thread-36" + "thread": 140631307486912, + "threadName": "Thread-2 (_start)" } ], - "msecs": 986.9158267974854, + "msecs": 905.0, "msg": "Transfering a message server -> client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19474.483489990234, + "relativeCreated": 809.6797466278076, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.19214725494384766 + "time_consumption": 0.18550920486450195 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 19:00:10,988", - "created": 1614535210.9880598, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,907", + "created": 1742744816.9070542, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -147858,9 +5183,8 @@ "True", "" ], - "asctime": "2021-02-28 19:00:10,987", - "created": 1614535210.9875085, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,906", + "created": 1742744816.9066088, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -147869,72 +5193,71 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 987.5085353851318, + "msecs": 906.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19475.07619857788, + "relativeCreated": 810.295581817627, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Returnvalue of Server send Method", + "=", "True", "" ], - "asctime": "2021-02-28 19:00:10,987", - "created": 1614535210.9877954, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,906", + "created": 1742744816.9068508, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 987.795352935791, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 906.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19475.36301612854, + "relativeCreated": 810.537576675415, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 988.0597591400146, + "msecs": 907.0, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19475.627422332764, + "relativeCreated": 810.7409477233887, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0002644062042236328 + "time_consumption": 0.0002033710479736328 }, { "args": [ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-02-28 19:00:10,988", - "created": 1614535210.9888296, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,907", + "created": 1742744816.9077883, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Received message on client side is correct (Content {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} and Type is ).", "module": "test", "moduleLogger": [ @@ -147944,9 +5267,8 @@ "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-02-28 19:00:10,988", - "created": 1614535210.9883978, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,907", + "created": 1742744816.9073772, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -147955,93 +5277,91 @@ "lineno": 22, "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 988.3978366851807, + "msecs": 907.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19475.96549987793, + "relativeCreated": 811.0640048980713, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Received message on client side", + "=", "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", "" ], - "asctime": "2021-02-28 19:00:10,988", - "created": 1614535210.988636, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,907", + "created": 1742744816.9075847, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", "module": "test", - "msecs": 988.6360168457031, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 907.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19476.203680038452, + "relativeCreated": 811.2714290618896, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 988.8296127319336, + "msecs": 907.0, "msg": "Received message on client side is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 19476.397275924683, + "relativeCreated": 811.4750385284424, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00019359588623046875 + "time_consumption": 0.00020360946655273438 } ], - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.7697141170501709, - "time_finished": "2021-02-28 19:00:10,988", - "time_start": "2021-02-28 19:00:10,219" + "time_consumption": 0.7538213729858398, + "time_finished": "2025-03-23 16:46:56,907", + "time_start": "2025-03-23 16:46:56,153" }, - "_ZJMD8EzaEeuiHtQbLi1mZg": { + "REQ-0006": { "args": null, - "asctime": "2021-02-28 18:59:52,394", - "created": 1614535192.3946457, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,908", + "created": 1742744816.90852, "exc_text": null, "filename": "__init__.py", - "funcName": "testrun", + "funcName": "testCase", "levelname": "INFO", "levelno": 20, - "lineno": 34, - "message": "_ZJMD8EzaEeuiHtQbLi1mZg", + "lineno": 327, + "message": "REQ-0006", "module": "__init__", "moduleLogger": [], - "msecs": 394.64569091796875, - "msg": "_ZJMD8EzaEeuiHtQbLi1mZg", + "msecs": 908.0, + "msg": "REQ-0006", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 882.2133541107178, + "relativeCreated": 812.2067451477051, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-02-28 18:59:52,403", - "created": 1614535192.403655, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.9170296, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -148055,9 +5375,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 18:59:52,395", - "created": 1614535192.3957036, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,909", + "created": 1742744816.909764, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -148066,24 +5385,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 395.7035541534424, + "msecs": 909.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 883.2712173461914, + "relativeCreated": 813.450813293457, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 18:59:52,396", - "created": 1614535192.3967292, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,910", + "created": 1742744816.910965, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -148092,24 +5410,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 396.7292308807373, + "msecs": 910.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 884.2968940734863, + "relativeCreated": 814.6517276763916, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 18:59:52,396", - "created": 1614535192.3969805, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,911", + "created": 1742744816.9112344, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", @@ -148118,41 +5435,40 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 396.98052406311035, + "msecs": 911.0, "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 884.5481872558594, + "relativeCreated": 814.9211406707764, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 18:59:52,397", - "created": 1614535192.3973205, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,911", + "created": 1742744816.9115875, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 397.3205089569092, + "msecs": 911.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 884.8881721496582, + "relativeCreated": 815.2742385864258, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148161,26 +5477,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 18:59:52,397", - "created": 1614535192.3975108, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,911", + "created": 1742744816.9117906, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 397.5107669830322, + "msecs": 911.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 885.0784301757812, + "relativeCreated": 815.4773712158203, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148188,9 +5503,8 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 18:59:52,397", - "created": 1614535192.3977647, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,912", + "created": 1742744816.912034, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148199,15 +5513,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 397.7646827697754, + "msecs": 912.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 885.3323459625244, + "relativeCreated": 815.720796585083, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148215,9 +5529,8 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 18:59:52,397", - "created": 1614535192.3979316, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,912", + "created": 1742744816.9122171, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148226,15 +5539,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 397.9315757751465, + "msecs": 912.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 885.4992389678955, + "relativeCreated": 815.903902053833, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148242,9 +5555,8 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 18:59:52,398", - "created": 1614535192.3980782, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,912", + "created": 1742744816.9124026, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148253,15 +5565,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 398.07820320129395, + "msecs": 912.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 885.645866394043, + "relativeCreated": 816.089391708374, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148269,9 +5581,8 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 18:59:52,398", - "created": 1614535192.398219, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,912", + "created": 1742744816.9125822, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148280,15 +5591,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 398.21910858154297, + "msecs": 912.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 885.786771774292, + "relativeCreated": 816.2689208984375, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148298,26 +5609,25 @@ "0", "0" ], - "asctime": "2021-02-28 18:59:52,398", - "created": 1614535192.3983762, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,912", + "created": 1742744816.9127734, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 398.3762264251709, + "msecs": 912.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 885.9438896179199, + "relativeCreated": 816.460132598877, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148327,26 +5637,25 @@ "1", "0" ], - "asctime": "2021-02-28 18:59:52,398", - "created": 1614535192.3985357, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,912", + "created": 1742744816.9129596, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 398.53572845458984, + "msecs": 912.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 886.1033916473389, + "relativeCreated": 816.6463375091553, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148356,26 +5665,25 @@ "0", "1" ], - "asctime": "2021-02-28 18:59:52,398", - "created": 1614535192.398717, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,913", + "created": 1742744816.9131377, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 398.71692657470703, + "msecs": 913.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 886.284589767456, + "relativeCreated": 816.8244361877441, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148385,52 +5693,50 @@ "1", "1" ], - "asctime": "2021-02-28 18:59:52,398", - "created": 1614535192.3988705, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,913", + "created": 1742744816.913314, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 398.87046813964844, + "msecs": 913.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 886.4381313323975, + "relativeCreated": 817.0008659362793, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 18:59:52,399", - "created": 1614535192.399004, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,913", + "created": 1742744816.9134722, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 399.0039825439453, + "msecs": 913.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 886.5716457366943, + "relativeCreated": 817.1589374542236, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148439,26 +5745,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 18:59:52,399", - "created": 1614535192.3991685, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,913", + "created": 1742744816.913644, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 399.1684913635254, + "msecs": 913.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 886.7361545562744, + "relativeCreated": 817.3308372497559, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148466,9 +5771,8 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 18:59:52,399", - "created": 1614535192.399335, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,913", + "created": 1742744816.913828, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148477,15 +5781,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 399.3349075317383, + "msecs": 913.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 886.9025707244873, + "relativeCreated": 817.5146579742432, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148493,9 +5797,8 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 18:59:52,399", - "created": 1614535192.3994882, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,913", + "created": 1742744816.913993, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148504,15 +5807,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 399.4882106781006, + "msecs": 913.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 887.0558738708496, + "relativeCreated": 817.6796436309814, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148522,26 +5825,25 @@ "8", "0" ], - "asctime": "2021-02-28 18:59:52,399", - "created": 1614535192.3996363, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,914", + "created": 1742744816.9142067, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 399.63626861572266, + "msecs": 914.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 887.2039318084717, + "relativeCreated": 817.8935050964355, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148551,26 +5853,25 @@ "9", "0" ], - "asctime": "2021-02-28 18:59:52,399", - "created": 1614535192.399786, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,914", + "created": 1742744816.9143972, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 399.78599548339844, + "msecs": 914.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 887.3536586761475, + "relativeCreated": 818.0840015411377, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148579,26 +5880,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 18:59:52,399", - "created": 1614535192.3999393, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,914", + "created": 1742744816.9145656, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 399.93929862976074, + "msecs": 914.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 887.5069618225098, + "relativeCreated": 818.2523250579834, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148607,26 +5907,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 18:59:52,400", - "created": 1614535192.4000778, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,914", + "created": 1742744816.9147253, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 400.07781982421875, + "msecs": 914.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 887.6454830169678, + "relativeCreated": 818.4120655059814, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148635,78 +5934,75 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 18:59:52,400", - "created": 1614535192.4002142, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,914", + "created": 1742744816.9148839, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 400.21419525146484, + "msecs": 914.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 887.7818584442139, + "relativeCreated": 818.570613861084, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 18:59:52,400", - "created": 1614535192.4003625, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,915", + "created": 1742744816.9150448, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 400.362491607666, + "msecs": 915.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 887.930154800415, + "relativeCreated": 818.7315464019775, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 18:59:52,400", - "created": 1614535192.4006405, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,915", + "created": 1742744816.9153485, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 400.64048767089844, + "msecs": 915.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 888.2081508636475, + "relativeCreated": 819.0352916717529, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148715,26 +6011,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 18:59:52,400", - "created": 1614535192.4007967, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,915", + "created": 1742744816.9155333, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 400.79665184020996, + "msecs": 915.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 888.364315032959, + "relativeCreated": 819.2200660705566, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148742,9 +6037,8 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 18:59:52,400", - "created": 1614535192.4009871, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,915", + "created": 1742744816.915749, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148753,15 +6047,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 400.9871482849121, + "msecs": 915.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 888.5548114776611, + "relativeCreated": 819.4358348846436, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148769,9 +6063,8 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 18:59:52,401", - "created": 1614535192.4011352, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,915", + "created": 1742744816.9159188, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148780,15 +6073,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 401.1352062225342, + "msecs": 915.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 888.7028694152832, + "relativeCreated": 819.6055889129639, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148796,9 +6089,8 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 18:59:52,401", - "created": 1614535192.4012747, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9160843, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148807,15 +6099,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 401.2746810913086, + "msecs": 916.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 888.8423442840576, + "relativeCreated": 819.7710514068604, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148823,9 +6115,8 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 18:59:52,401", - "created": 1614535192.4014332, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9162083, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -148834,15 +6125,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 401.43322944641113, + "msecs": 916.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 889.0008926391602, + "relativeCreated": 819.8950290679932, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148852,26 +6143,25 @@ "0", "0" ], - "asctime": "2021-02-28 18:59:52,401", - "created": 1614535192.401583, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9162667, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 401.5829563140869, + "msecs": 916.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 889.1506195068359, + "relativeCreated": 819.953441619873, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148881,26 +6171,25 @@ "1", "0" ], - "asctime": "2021-02-28 18:59:52,401", - "created": 1614535192.401754, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9163246, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 401.75390243530273, + "msecs": 916.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 889.3215656280518, + "relativeCreated": 820.0113773345947, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148910,26 +6199,25 @@ "0", "1" ], - "asctime": "2021-02-28 18:59:52,401", - "created": 1614535192.401908, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.916381, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 401.90792083740234, + "msecs": 916.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 889.4755840301514, + "relativeCreated": 820.0676441192627, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148939,52 +6227,50 @@ "1", "1" ], - "asctime": "2021-02-28 18:59:52,402", - "created": 1614535192.4020674, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9164362, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 402.0674228668213, + "msecs": 916.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 889.6350860595703, + "relativeCreated": 820.1229572296143, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 18:59:52,402", - "created": 1614535192.402198, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9164858, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 402.19807624816895, + "msecs": 916.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 889.765739440918, + "relativeCreated": 820.1725482940674, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -148993,26 +6279,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 18:59:52,402", - "created": 1614535192.402346, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9165392, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 402.3458957672119, + "msecs": 916.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 889.9135589599609, + "relativeCreated": 820.2259540557861, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149020,9 +6305,8 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 18:59:52,402", - "created": 1614535192.402512, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9165976, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -149031,15 +6315,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 402.5120735168457, + "msecs": 916.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 890.0797367095947, + "relativeCreated": 820.284366607666, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149047,9 +6331,8 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 18:59:52,402", - "created": 1614535192.4026618, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9166498, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -149058,15 +6341,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 402.6618003845215, + "msecs": 916.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 890.2294635772705, + "relativeCreated": 820.3365802764893, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149076,26 +6359,25 @@ "8", "0" ], - "asctime": "2021-02-28 18:59:52,402", - "created": 1614535192.4028068, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.916704, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 402.80675888061523, + "msecs": 916.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 890.3744220733643, + "relativeCreated": 820.3907012939453, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149105,26 +6387,25 @@ "9", "0" ], - "asctime": "2021-02-28 18:59:52,402", - "created": 1614535192.4029522, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.916759, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 402.9521942138672, + "msecs": 916.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 890.5198574066162, + "relativeCreated": 820.4457759857178, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149133,26 +6414,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 18:59:52,403", - "created": 1614535192.4030943, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.916822, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 403.0942916870117, + "msecs": 916.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 890.6619548797607, + "relativeCreated": 820.5087184906006, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149161,26 +6441,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 18:59:52,403", - "created": 1614535192.40324, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9168727, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 403.2399654388428, + "msecs": 916.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 890.8076286315918, + "relativeCreated": 820.5595016479492, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149189,72 +6468,69 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 18:59:52,403", - "created": 1614535192.4033735, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9169283, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 403.37347984313965, + "msecs": 916.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 890.9411430358887, + "relativeCreated": 820.6150531768799, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 18:59:52,403", - "created": 1614535192.4035237, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,916", + "created": 1742744816.9169812, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 403.52368354797363, + "msecs": 916.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 891.0913467407227, + "relativeCreated": 820.6679821014404, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 403.6550521850586, + "msecs": 917.0, "msg": "Setting up communication", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 891.2227153778076, + "relativeCreated": 820.716381072998, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00013136863708496094 + "time_consumption": 4.839897155761719e-05 }, { "args": [], - "asctime": "2021-02-28 18:59:52,748", - "created": 1614535192.7487602, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,260", + "created": 1742744817.2608433, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -149268,9 +6544,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 18:59:52,403", - "created": 1614535192.4039588, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.9171524, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -149279,24 +6554,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 403.958797454834, + "msecs": 917.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 891.526460647583, + "relativeCreated": 820.8391666412354, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-02-28 18:59:52,404", - "created": 1614535192.4041085, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.917206, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -149305,41 +6579,40 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 404.10852432250977, + "msecs": 917.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 891.6761875152588, + "relativeCreated": 820.8928108215332, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 18:59:52,404", - "created": 1614535192.4042494, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.917258, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 404.2494297027588, + "msecs": 917.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 891.8170928955078, + "relativeCreated": 820.9447860717773, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149350,35 +6623,33 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:52,404", - "created": 1614535192.4044874, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.917348, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 404.48737144470215, + "msecs": 917.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 892.0550346374512, + "relativeCreated": 821.0346698760986, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 18:59:52,405", - "created": 1614535192.4050426, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.9175441, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -149387,24 +6658,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 405.0426483154297, + "msecs": 917.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 892.6103115081787, + "relativeCreated": 821.2308883666992, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 18:59:52,405", - "created": 1614535192.4052162, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.917602, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -149413,41 +6683,40 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 405.2162170410156, + "msecs": 917.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 892.7838802337646, + "relativeCreated": 821.2888240814209, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 18:59:52,405", - "created": 1614535192.4053657, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.9176614, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 405.3657054901123, + "msecs": 917.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 892.9333686828613, + "relativeCreated": 821.3481903076172, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -149455,9 +6724,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:52,405", - "created": 1614535192.405873, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,917", + "created": 1742744816.9178312, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -149466,25 +6734,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 405.87306022644043, + "msecs": 917.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 893.4407234191895, + "relativeCreated": 821.5179443359375, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:52,414", - "created": 1614535192.414287, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,926", + "created": 1742744816.9263945, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -149493,300 +6760,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 414.2870903015137, + "msecs": 926.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 901.8547534942627, + "relativeCreated": 830.0812244415283, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,414", - "created": 1614535192.414606, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 414.60609436035156, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 902.1737575531006, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:52,414", - "created": 1614535192.4147875, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 414.78753089904785, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 902.3551940917969, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,415", - "created": 1614535192.4150016, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.00163078308105, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 902.5692939758301, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,415", - "created": 1614535192.4151886, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 415.1885509490967, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 902.7562141418457, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,415", - "created": 1614535192.415423, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.4229164123535, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 902.9905796051025, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,415", - "created": 1614535192.415573, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 415.5728816986084, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 903.1405448913574, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,415", - "created": 1614535192.415767, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 415.76695442199707, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 903.3346176147461, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,415", - "created": 1614535192.4159162, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 415.91620445251465, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 903.4838676452637, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,416", - "created": 1614535192.4161065, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 416.1064624786377, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 903.6741256713867, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,416", - "created": 1614535192.4162512, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 416.25118255615234, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 903.8188457489014, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 18:59:52,416", - "created": 1614535192.4165378, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,926", + "created": 1742744816.9267488, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -149795,25 +6786,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 416.5377616882324, + "msecs": 926.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 904.1054248809814, + "relativeCreated": 830.4355144500732, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 18:59:52,417", - "created": 1614535192.4177427, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,927", + "created": 1742744816.927723, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -149822,98 +6812,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 417.7427291870117, + "msecs": 927.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 905.3103923797607, + "relativeCreated": 831.4096927642822, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,418", - "created": 1614535192.4181235, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 418.1234836578369, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 905.6911468505859, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:52,418", - "created": 1614535192.4183273, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 418.32733154296875, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 905.8949947357178, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 18:59:52,418", - "created": 1614535192.4185877, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 418.58768463134766, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 906.1553478240967, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ @@ -149923,54 +6831,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:52,419", - "created": 1614535192.419013, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,928", + "created": 1742744816.9280405, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 419.01302337646484, + "msecs": 928.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 906.5806865692139, + "relativeCreated": 831.7272663116455, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-02-28 18:59:52,419", - "created": 1614535192.4192283, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,928", + "created": 1742744816.9281466, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 419.22831535339355, + "msecs": 928.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 906.7959785461426, + "relativeCreated": 831.8333625793457, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ @@ -149980,36 +6886,34 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:52,419", - "created": 1614535192.4194827, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,928", + "created": 1742744816.928273, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 419.4827079772949, + "msecs": 928.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 907.050371170044, + "relativeCreated": 831.9597244262695, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:52,420", - "created": 1614535192.420489, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,928", + "created": 1742744816.9286585, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -150018,25 +6922,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 420.4890727996826, + "msecs": 928.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 908.0567359924316, + "relativeCreated": 832.3452472686768, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:52,429", - "created": 1614535192.4290552, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,936", + "created": 1742744816.9369323, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -150045,300 +6948,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 429.05521392822266, + "msecs": 936.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 916.6228771209717, + "relativeCreated": 840.6190872192383, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,429", - "created": 1614535192.4293802, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 429.3801784515381, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 916.9478416442871, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:52,429", - "created": 1614535192.429556, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 429.55589294433594, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 917.123556137085, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,429", - "created": 1614535192.4298105, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 429.8105239868164, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 917.3781871795654, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,429", - "created": 1614535192.4299798, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 429.9798011779785, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 917.5474643707275, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,430", - "created": 1614535192.4301968, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 430.19676208496094, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 917.76442527771, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,430", - "created": 1614535192.4303403, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 430.3402900695801, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 917.9079532623291, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,430", - "created": 1614535192.430536, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 430.53603172302246, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 918.1036949157715, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,430", - "created": 1614535192.4306808, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 430.6807518005371, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 918.2484149932861, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,430", - "created": 1614535192.4308677, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 430.86767196655273, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 918.4353351593018, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,431", - "created": 1614535192.4310203, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 431.02025985717773, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 918.5879230499268, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 18:59:52,431", - "created": 1614535192.4312937, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,937", + "created": 1742744816.937331, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -150347,25 +6974,24 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 431.2937259674072, + "msecs": 937.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 918.8613891601562, + "relativeCreated": 841.0177230834961, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 18:59:52,432", - "created": 1614535192.4324481, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,938", + "created": 1742744816.9382699, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -150374,98 +7000,16 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 432.448148727417, + "msecs": 938.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 920.015811920166, + "relativeCreated": 841.956615447998, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,432", - "created": 1614535192.4329014, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 432.90138244628906, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 920.4690456390381, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:52,433", - "created": 1614535192.4331124, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 433.11238288879395, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 920.680046081543, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 18:59:52,433", - "created": 1614535192.4334054, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 433.40539932250977, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 920.9730625152588, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ @@ -150475,73 +7019,70 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:52,433", - "created": 1614535192.4338784, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,938", + "created": 1742744816.938622, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 433.87842178344727, + "msecs": 938.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 921.4460849761963, + "relativeCreated": 842.308759689331, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-02-28 18:59:52,434", - "created": 1614535192.4340942, - "exc_info": null, + "asctime": "2025-03-23 16:46:56,938", + "created": 1742744816.9387462, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 434.0941905975342, + "msecs": 938.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 921.6618537902832, + "relativeCreated": 842.432975769043, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" } ], - "msecs": 748.7602233886719, + "msecs": 260.0, "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1236.327886581421, + "relativeCreated": 1164.5300388336182, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.3146660327911377 + "time_consumption": 0.3220970630645752 }, { "args": [], - "asctime": "2021-02-28 18:59:53,051", - "created": 1614535193.051893, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,564", + "created": 1742744817.5641832, "exc_text": null, "filename": "test_communication.py", "funcName": "send_message_with_invalid_checksum", @@ -150559,26 +7100,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-02-28 18:59:52,749", - "created": 1614535192.7494128, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,261", + "created": 1742744817.2615113, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 749.4127750396729, + "msecs": 261.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1236.9804382324219, + "relativeCreated": 1165.1980876922607, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -150586,9 +7126,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 18:59:52,750", - "created": 1614535192.750428, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,262", + "created": 1742744817.262501, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -150597,25 +7136,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 750.4279613494873, + "msecs": 262.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1237.9956245422363, + "relativeCreated": 1166.1877632141113, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 18:59:52,758", - "created": 1614535192.7588964, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,271", + "created": 1742744817.2710376, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -150624,300 +7162,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 758.8963508605957, + "msecs": 271.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1246.4640140533447, + "relativeCreated": 1174.7243404388428, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,759", - "created": 1614535192.7592063, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 759.2062950134277, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1246.7739582061768, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:52,759", - "created": 1614535192.7593806, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 759.380578994751, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1246.9482421875, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,759", - "created": 1614535192.7595878, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 759.5877647399902, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1247.1554279327393, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,759", - "created": 1614535192.7597303, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 759.730339050293, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1247.298002243042, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,759", - "created": 1614535192.759941, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 759.9411010742188, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1247.5087642669678, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,760", - "created": 1614535192.7600706, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 760.0705623626709, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1247.63822555542, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,760", - "created": 1614535192.7602904, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 760.2903842926025, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1247.8580474853516, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,760", - "created": 1614535192.760422, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 760.4219913482666, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1247.9896545410156, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,760", - "created": 1614535192.760624, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 760.6239318847656, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1248.1915950775146, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:52,760", - "created": 1614535192.7607536, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 760.7536315917969, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1248.321294784546, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e" ], - "asctime": "2021-02-28 18:59:52,761", - "created": 1614535192.7610345, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,271", + "created": 1742744817.2718165, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -150926,25 +7188,24 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e", "module": "__init__", - "msecs": 761.0344886779785, + "msecs": 271.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1248.6021518707275, + "relativeCreated": 1175.5032539367676, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e" ], - "asctime": "2021-02-28 18:59:52,765", - "created": 1614535192.7655163, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,276", + "created": 1742744817.2763836, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -150953,124 +7214,41 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c 3a 3e", "module": "__init__", - "msecs": 765.5162811279297, + "msecs": 276.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1253.0839443206787, + "relativeCreated": 1180.070400238037, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:52,766", - "created": 1614535192.7660358, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 766.035795211792, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1253.603458404541, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:52,766", - "created": 1614535192.766219, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 766.218900680542, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1253.786563873291, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c" - ], - "asctime": "2021-02-28 18:59:52,766", - "created": 1614535192.7665412, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1c", - "module": "stp", - "msecs": 766.5412425994873, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1254.1089057922363, - "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 18:59:52,766", - "created": 1614535192.76687, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,277", + "created": 1742744817.2772334, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "ERROR", "levelno": 40, - "lineno": 465, + "lineno": 460, "message": "prot-server: Received message has an invalid checksum. Message will be ignored.", "module": "__init__", - "msecs": 766.8700218200684, + "msecs": 277.0, "msg": "%s Received message has an invalid checksum. Message will be ignored.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1254.4376850128174, + "relativeCreated": 1180.920124053955, "stack_info": null, - "thread": 140381102622464, - "threadName": "Thread-3" + "thread": 140631299094208, + "threadName": "Thread-3 (_start)" }, { "args": [ @@ -151079,55 +7257,53 @@ "17", "34" ], - "asctime": "2021-02-28 18:59:53,051", - "created": 1614535193.0515487, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,563", + "created": 1742744817.5638313, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 683, + "lineno": 687, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 51.54871940612793, + "msecs": 563.0, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1539.116382598877, + "relativeCreated": 1467.5180912017822, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 51.892995834350586, + "msecs": 564.0, "msg": "Transfering a message client -> server", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1539.4606590270996, + "relativeCreated": 1467.8699970245361, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00034427642822265625 + "time_consumption": 0.00035190582275390625 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 18:59:53,052", - "created": 1614535193.0526843, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,565", + "created": 1742744817.5650766, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -151137,9 +7313,8 @@ "True", "" ], - "asctime": "2021-02-28 18:59:53,052", - "created": 1614535193.052299, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,564", + "created": 1742744817.5646484, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -151148,72 +7323,71 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 52.29902267456055, + "msecs": 564.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1539.8666858673096, + "relativeCreated": 1468.3351516723633, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Returnvalue of Client send Method", + "=", "True", "" ], - "asctime": "2021-02-28 18:59:53,052", - "created": 1614535193.0525048, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,564", + "created": 1742744817.5648756, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 52.504777908325195, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 564.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1540.0724411010742, + "relativeCreated": 1468.562364578247, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 52.68430709838867, + "msecs": 565.0, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1540.2519702911377, + "relativeCreated": 1468.7633514404297, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00017952919006347656 + "time_consumption": 0.0002009868621826172 }, { "args": [ "None", "" ], - "asctime": "2021-02-28 18:59:53,053", - "created": 1614535193.0533228, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,565", + "created": 1742744817.5657976, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Checksum Error -> No message received by server is correct (Content None and Type is ).", "module": "test", "moduleLogger": [ @@ -151223,9 +7397,8 @@ "None", "" ], - "asctime": "2021-02-28 18:59:53,052", - "created": 1614535193.0529542, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,565", + "created": 1742744817.5654016, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -151234,63 +7407,62 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by server): None ()", "module": "test", - "msecs": 52.95419692993164, + "msecs": 565.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1540.5218601226807, + "relativeCreated": 1469.0883159637451, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Checksum Error -> No message received by server", + "=", "None", "" ], - "asctime": "2021-02-28 18:59:53,053", - "created": 1614535193.0531228, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,565", + "created": 1742744817.5656025, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Checksum Error -> No message received by server): result = None ()", "module": "test", - "msecs": 53.122758865356445, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 565.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1540.6904220581055, + "relativeCreated": 1469.2893028259277, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 53.322792053222656, + "msecs": 565.0, "msg": "Checksum Error -> No message received by server is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1540.8904552459717, + "relativeCreated": 1469.4843292236328, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00020003318786621094 + "time_consumption": 0.00019502639770507812 }, { "args": [], - "asctime": "2021-02-28 18:59:53,356", - "created": 1614535193.3561146, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,868", + "created": 1742744817.8688297, "exc_text": null, "filename": "test_communication.py", "funcName": "send_message_with_invalid_checksum", @@ -151308,26 +7480,25 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-02-28 18:59:53,053", - "created": 1614535193.0537589, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,566", + "created": 1742744817.566299, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 53.758859634399414, + "msecs": 566.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1541.3265228271484, + "relativeCreated": 1469.9857234954834, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -151335,9 +7506,8 @@ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 18:59:53,054", - "created": 1614535193.0548027, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,567", + "created": 1742744817.5673923, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -151346,25 +7516,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 54.802656173706055, + "msecs": 567.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1542.370319366455, + "relativeCreated": 1471.0791110992432, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 18:59:53,063", - "created": 1614535193.0633717, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,576", + "created": 1742744817.5762491, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -151373,300 +7542,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 63.37165832519531, + "msecs": 576.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1550.9393215179443, + "relativeCreated": 1479.935884475708, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,063", - "created": 1614535193.063684, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 63.68398666381836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1551.2516498565674, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,063", - "created": 1614535193.0638866, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 63.88664245605469, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1551.4543056488037, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,064", - "created": 1614535193.064099, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 64.09907341003418, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1551.6667366027832, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,064", - "created": 1614535193.0642533, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 64.25333023071289, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1551.820993423462, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,064", - "created": 1614535193.0644612, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 64.46123123168945, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1552.0288944244385, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,064", - "created": 1614535193.0645916, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 64.59164619445801, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1552.159309387207, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,064", - "created": 1614535193.06479, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 64.79001045227051, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1552.3576736450195, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,064", - "created": 1614535193.0649185, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 64.91851806640625, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1552.4861812591553, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,065", - "created": 1614535193.0650907, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 65.09065628051758, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1552.6583194732666, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,065", - "created": 1614535193.065217, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 65.2170181274414, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1552.7846813201904, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ "comm-server:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-02-28 18:59:53,065", - "created": 1614535193.0655165, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,577", + "created": 1742744817.5771472, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -151675,25 +7568,24 @@ "lineno": 284, "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 65.51647186279297, + "msecs": 577.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1553.084135055542, + "relativeCreated": 1480.8340072631836, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ "comm-client:", "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" ], - "asctime": "2021-02-28 18:59:53,069", - "created": 1614535193.0699942, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,581", + "created": 1742744817.5817897, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -151702,98 +7594,16 @@ "lineno": 414, "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", "module": "__init__", - "msecs": 69.99421119689941, + "msecs": 581.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1557.5618743896484, + "relativeCreated": 1485.4764938354492, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,070", - "created": 1614535193.0704541, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 70.45412063598633, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1558.0217838287354, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,070", - "created": 1614535193.0706336, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 70.6336498260498, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1558.2013130187988, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f" - ], - "asctime": "2021-02-28 18:59:53,070", - "created": 1614535193.0709462, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f", - "module": "stp", - "msecs": 70.94621658325195, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1558.513879776001, - "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ @@ -151803,53 +7613,51 @@ "status: service or data unknown", "'msg2_data_to_be_transfered'" ], - "asctime": "2021-02-28 18:59:53,071", - "created": 1614535193.071339, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,582", + "created": 1742744817.5829196, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", "module": "__init__", - "msecs": 71.33889198303223, + "msecs": 582.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1558.9065551757812, + "relativeCreated": 1486.6063594818115, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 18:59:53,071", - "created": 1614535193.0715666, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,583", + "created": 1742744817.5832553, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 71.56658172607422, + "msecs": 583.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1559.1342449188232, + "relativeCreated": 1486.9420528411865, "stack_info": null, - "thread": 140381094229760, - "threadName": "Thread-4" + "thread": 140631290701504, + "threadName": "Thread-4 (_start)" }, { "args": [ @@ -151858,55 +7666,53 @@ "17", "35" ], - "asctime": "2021-02-28 18:59:53,355", - "created": 1614535193.3557568, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,868", + "created": 1742744817.8684714, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 683, + "lineno": 687, "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", "module": "__init__", - "msecs": 355.7567596435547, + "msecs": 868.0, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1843.3244228363037, + "relativeCreated": 1772.158145904541, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 356.11462593078613, + "msecs": 868.0, "msg": "Transfering a message server -> client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1843.6822891235352, + "relativeCreated": 1772.5164890289307, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0003578662872314453 + "time_consumption": 0.00035834312438964844 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 18:59:53,356", - "created": 1614535193.356899, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,869", + "created": 1742744817.8697221, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -151916,9 +7722,8 @@ "True", "" ], - "asctime": "2021-02-28 18:59:53,356", - "created": 1614535193.356517, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,869", + "created": 1742744817.8692956, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -151927,72 +7732,71 @@ "lineno": 22, "message": "Result (Returnvalue of Server send Method): True ()", "module": "test", - "msecs": 356.51707649230957, + "msecs": 869.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1844.0847396850586, + "relativeCreated": 1772.9823589324951, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Returnvalue of Server send Method", + "=", "True", "" ], - "asctime": "2021-02-28 18:59:53,356", - "created": 1614535193.356719, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,869", + "created": 1742744817.869522, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Returnvalue of Server send Method): result = True ()", "module": "test", - "msecs": 356.7190170288086, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 869.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1844.2866802215576, + "relativeCreated": 1773.2088565826416, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 356.8990230560303, + "msecs": 869.0, "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1844.4666862487793, + "relativeCreated": 1773.4088897705078, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001800060272216797 + "time_consumption": 0.00020003318786621094 }, { "args": [ "None", "" ], - "asctime": "2021-02-28 18:59:53,357", - "created": 1614535193.3574586, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,870", + "created": 1742744817.8705065, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Checksum Error -> No message received by client is correct (Content None and Type is ).", "module": "test", "moduleLogger": [ @@ -152002,9 +7806,8 @@ "None", "" ], - "asctime": "2021-02-28 18:59:53,357", - "created": 1614535193.3571799, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,870", + "created": 1742744817.870028, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -152013,93 +7816,91 @@ "lineno": 22, "message": "Result (Checksum Error -> No message received by client): None ()", "module": "test", - "msecs": 357.1798801422119, + "msecs": 870.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1844.747543334961, + "relativeCreated": 1773.7147808074951, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Checksum Error -> No message received by client", + "=", "None", "" ], - "asctime": "2021-02-28 18:59:53,357", - "created": 1614535193.3573222, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,870", + "created": 1742744817.8702724, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Checksum Error -> No message received by client): result = None ()", "module": "test", - "msecs": 357.32221603393555, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 870.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1844.8898792266846, + "relativeCreated": 1773.9591598510742, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 357.45859146118164, + "msecs": 870.0, "msg": "Checksum Error -> No message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 1845.0262546539307, + "relativeCreated": 1774.193286895752, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00013637542724609375 + "time_consumption": 0.00023412704467773438 } ], - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.9628129005432129, - "time_finished": "2021-02-28 18:59:53,357", - "time_start": "2021-02-28 18:59:52,394" + "time_consumption": 0.9619865417480469, + "time_finished": "2025-03-23 16:46:57,870", + "time_start": "2025-03-23 16:46:56,908" }, - "_ZOW3ME0vEeuiHtQbLi1mZg": { + "REQ-0007": { "args": null, - "asctime": "2021-02-28 19:00:04,141", - "created": 1614535204.141904, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,871", + "created": 1742744817.8714616, "exc_text": null, "filename": "__init__.py", - "funcName": "testrun", + "funcName": "testCase", "levelname": "INFO", "levelno": 20, - "lineno": 41, - "message": "_ZOW3ME0vEeuiHtQbLi1mZg", + "lineno": 327, + "message": "REQ-0007", "module": "__init__", "moduleLogger": [], - "msecs": 141.90411567687988, - "msg": "_ZOW3ME0vEeuiHtQbLi1mZg", + "msecs": 871.0, + "msg": "REQ-0007", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12629.471778869629, + "relativeCreated": 1775.1483917236328, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-02-28 19:00:04,154", - "created": 1614535204.1543992, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8813765, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -152113,9 +7914,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:04,143", - "created": 1614535204.1434743, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,872", + "created": 1742744817.8728747, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -152124,24 +7924,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 143.47434043884277, + "msecs": 872.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12631.042003631592, + "relativeCreated": 1776.5614986419678, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:04,144", - "created": 1614535204.144792, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,874", + "created": 1742744817.8747144, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -152150,24 +7949,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 144.7920799255371, + "msecs": 874.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12632.359743118286, + "relativeCreated": 1778.4011363983154, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:04,145", - "created": 1614535204.1451495, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,875", + "created": 1742744817.8750348, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", @@ -152176,41 +7974,40 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 145.14946937561035, + "msecs": 875.0, "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12632.71713256836, + "relativeCreated": 1778.721570968628, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:04,145", - "created": 1614535204.1456275, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,875", + "created": 1742744817.875434, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 145.62749862670898, + "msecs": 875.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12633.195161819458, + "relativeCreated": 1779.120683670044, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152219,26 +8016,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:04,145", - "created": 1614535204.1459212, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,875", + "created": 1742744817.8756907, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 145.9212303161621, + "msecs": 875.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12633.488893508911, + "relativeCreated": 1779.3774604797363, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152246,9 +8042,8 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:04,146", - "created": 1614535204.146231, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,875", + "created": 1742744817.8759696, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152257,15 +8052,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 146.23093605041504, + "msecs": 875.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12633.798599243164, + "relativeCreated": 1779.6564102172852, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152273,9 +8068,8 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:04,146", - "created": 1614535204.1464398, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,876", + "created": 1742744817.876183, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152284,15 +8078,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 146.439790725708, + "msecs": 876.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12634.007453918457, + "relativeCreated": 1779.869794845581, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152300,9 +8094,8 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:04,146", - "created": 1614535204.1466284, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,876", + "created": 1742744817.8763828, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152311,15 +8104,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 146.62837982177734, + "msecs": 876.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12634.196043014526, + "relativeCreated": 1780.0695896148682, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152327,9 +8120,8 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:04,146", - "created": 1614535204.146824, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,876", + "created": 1742744817.876576, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152338,15 +8130,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 146.82388305664062, + "msecs": 876.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12634.39154624939, + "relativeCreated": 1780.2627086639404, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152356,26 +8148,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:04,147", - "created": 1614535204.147049, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,876", + "created": 1742744817.876787, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 147.0489501953125, + "msecs": 876.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12634.616613388062, + "relativeCreated": 1780.4737091064453, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152385,26 +8176,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:04,147", - "created": 1614535204.1472347, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,877", + "created": 1742744817.8770003, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 147.23467826843262, + "msecs": 877.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12634.802341461182, + "relativeCreated": 1780.6870937347412, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152414,26 +8204,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:04,147", - "created": 1614535204.1474106, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,877", + "created": 1742744817.8772063, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 147.41063117980957, + "msecs": 877.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12634.978294372559, + "relativeCreated": 1780.893087387085, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152443,52 +8232,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:04,147", - "created": 1614535204.1475825, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,877", + "created": 1742744817.8774085, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 147.5825309753418, + "msecs": 877.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12635.15019416809, + "relativeCreated": 1781.095266342163, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:04,147", - "created": 1614535204.147753, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,877", + "created": 1742744817.8775897, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 147.7530002593994, + "msecs": 877.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12635.320663452148, + "relativeCreated": 1781.2764644622803, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152497,26 +8284,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:04,147", - "created": 1614535204.14793, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,877", + "created": 1742744817.8777876, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 147.92990684509277, + "msecs": 877.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12635.497570037842, + "relativeCreated": 1781.4743518829346, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152524,9 +8310,8 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:04,148", - "created": 1614535204.1481178, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,877", + "created": 1742744817.8779998, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152535,15 +8320,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 148.1177806854248, + "msecs": 877.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12635.685443878174, + "relativeCreated": 1781.686544418335, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152551,9 +8336,8 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:04,148", - "created": 1614535204.1482837, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,878", + "created": 1742744817.8782737, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152562,15 +8346,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 148.2837200164795, + "msecs": 878.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12635.851383209229, + "relativeCreated": 1781.9604873657227, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152580,26 +8364,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:04,148", - "created": 1614535204.1484544, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,878", + "created": 1742744817.8785098, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 148.4544277191162, + "msecs": 878.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12636.022090911865, + "relativeCreated": 1782.1965217590332, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152609,26 +8392,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:04,148", - "created": 1614535204.1486692, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,878", + "created": 1742744817.8786998, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 148.66924285888672, + "msecs": 878.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12636.236906051636, + "relativeCreated": 1782.3865413665771, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152637,26 +8419,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:04,148", - "created": 1614535204.1488388, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,878", + "created": 1742744817.8788698, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 148.83875846862793, + "msecs": 878.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12636.406421661377, + "relativeCreated": 1782.5565338134766, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152665,26 +8446,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:04,148", - "created": 1614535204.1489954, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,879", + "created": 1742744817.87903, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 148.99539947509766, + "msecs": 879.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12636.563062667847, + "relativeCreated": 1782.7167510986328, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152693,78 +8473,75 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:04,149", - "created": 1614535204.149164, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,879", + "created": 1742744817.879188, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 149.16396141052246, + "msecs": 879.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12636.731624603271, + "relativeCreated": 1782.8748226165771, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:04,149", - "created": 1614535204.149327, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,879", + "created": 1742744817.8793495, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 149.32703971862793, + "msecs": 879.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12636.894702911377, + "relativeCreated": 1783.036231994629, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,149", - "created": 1614535204.1496897, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,879", + "created": 1742744817.879654, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 149.6896743774414, + "msecs": 879.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12637.25733757019, + "relativeCreated": 1783.3406925201416, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152773,26 +8550,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:04,149", - "created": 1614535204.1498904, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,879", + "created": 1742744817.8798425, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 149.89042282104492, + "msecs": 879.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12637.458086013794, + "relativeCreated": 1783.529281616211, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152800,9 +8576,8 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:04,150", - "created": 1614535204.1501253, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8800588, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152811,15 +8586,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 150.12526512145996, + "msecs": 880.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12637.692928314209, + "relativeCreated": 1783.745527267456, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152827,9 +8602,8 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:04,150", - "created": 1614535204.150299, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.880231, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152838,15 +8612,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 150.299072265625, + "msecs": 880.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12637.866735458374, + "relativeCreated": 1783.9176654815674, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152854,9 +8628,8 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:04,150", - "created": 1614535204.150459, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8803983, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152865,15 +8638,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 150.45905113220215, + "msecs": 880.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12638.026714324951, + "relativeCreated": 1784.0850353240967, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152881,9 +8654,8 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:04,150", - "created": 1614535204.1506162, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8805315, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -152892,15 +8664,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 150.61616897583008, + "msecs": 880.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12638.18383216858, + "relativeCreated": 1784.2183113098145, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152910,26 +8682,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:04,150", - "created": 1614535204.150782, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.880589, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 150.78210830688477, + "msecs": 880.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12638.349771499634, + "relativeCreated": 1784.275770187378, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152939,26 +8710,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:04,150", - "created": 1614535204.1509798, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8806486, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 150.97975730895996, + "msecs": 880.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12638.547420501709, + "relativeCreated": 1784.3353748321533, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152968,26 +8738,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:04,151", - "created": 1614535204.1511838, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8807075, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 151.1838436126709, + "msecs": 880.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12638.75150680542, + "relativeCreated": 1784.3942642211914, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -152997,52 +8766,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:04,151", - "created": 1614535204.1513631, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8807654, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 151.36313438415527, + "msecs": 880.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12638.930797576904, + "relativeCreated": 1784.452199935913, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,151", - "created": 1614535204.1515326, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8808174, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 151.53264999389648, + "msecs": 880.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12639.100313186646, + "relativeCreated": 1784.5041751861572, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153051,26 +8818,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:04,151", - "created": 1614535204.1517076, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8808732, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 151.70764923095703, + "msecs": 880.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12639.275312423706, + "relativeCreated": 1784.559965133667, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153078,9 +8844,8 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:04,151", - "created": 1614535204.1518915, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.880937, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -153089,15 +8854,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 151.89146995544434, + "msecs": 880.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12639.459133148193, + "relativeCreated": 1784.6238613128662, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153105,9 +8870,8 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:04,152", - "created": 1614535204.152058, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,880", + "created": 1742744817.8809955, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -153116,15 +8880,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 152.05788612365723, + "msecs": 880.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12639.625549316406, + "relativeCreated": 1784.682273864746, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153134,26 +8898,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:04,152", - "created": 1614535204.1522272, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8810525, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 152.22716331481934, + "msecs": 881.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12639.794826507568, + "relativeCreated": 1784.7392559051514, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153163,26 +8926,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:04,152", - "created": 1614535204.1523962, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8811104, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 152.39620208740234, + "msecs": 881.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12639.963865280151, + "relativeCreated": 1784.797191619873, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153191,26 +8953,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:04,152", - "created": 1614535204.1525605, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8811657, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 152.56047248840332, + "msecs": 881.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12640.128135681152, + "relativeCreated": 1784.8525047302246, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153219,26 +8980,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:04,152", - "created": 1614535204.1527176, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8812225, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 152.71759033203125, + "msecs": 881.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12640.28525352478, + "relativeCreated": 1784.9092483520508, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153247,72 +9007,69 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:04,153", - "created": 1614535204.1538954, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.881275, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 153.89537811279297, + "msecs": 881.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12641.463041305542, + "relativeCreated": 1784.9617004394531, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,154", - "created": 1614535204.1541991, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.881327, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 154.19912338256836, + "msecs": 881.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12641.766786575317, + "relativeCreated": 1785.0136756896973, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 154.39915657043457, + "msecs": 881.0, "msg": "Setting up communication", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12641.966819763184, + "relativeCreated": 1785.0632667541504, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00020003318786621094 + "time_consumption": 4.9591064453125e-05 }, { "args": [], - "asctime": "2021-02-28 19:00:04,500", - "created": 1614535204.5002773, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,224", + "created": 1742744818.2249815, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -153326,9 +9083,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:04,154", - "created": 1614535204.1547773, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8815143, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -153337,24 +9093,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 154.77728843688965, + "msecs": 881.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12642.344951629639, + "relativeCreated": 1785.201072692871, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:04,154", - "created": 1614535204.1549802, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.881568, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -153363,41 +9118,40 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 154.98018264770508, + "msecs": 881.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12642.547845840454, + "relativeCreated": 1785.254716873169, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,155", - "created": 1614535204.155157, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8816204, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 155.15708923339844, + "msecs": 881.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12642.724752426147, + "relativeCreated": 1785.3071689605713, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153408,35 +9162,33 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:04,155", - "created": 1614535204.1554615, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8817108, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 155.46154975891113, + "msecs": 881.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12643.02921295166, + "relativeCreated": 1785.3975296020508, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:04,156", - "created": 1614535204.1562262, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8819108, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -153445,24 +9197,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 156.22615814208984, + "msecs": 881.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12643.793821334839, + "relativeCreated": 1785.597562789917, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:04,156", - "created": 1614535204.1565282, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,881", + "created": 1742744817.8819695, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -153471,41 +9222,40 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 156.52823448181152, + "msecs": 881.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12644.09589767456, + "relativeCreated": 1785.656213760376, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:04,156", - "created": 1614535204.156807, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,882", + "created": 1742744817.8820236, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 156.80694580078125, + "msecs": 882.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12644.37460899353, + "relativeCreated": 1785.710334777832, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -153513,9 +9263,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:04,157", - "created": 1614535204.1574557, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,882", + "created": 1742744817.8822792, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -153524,25 +9273,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 157.4556827545166, + "msecs": 882.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12645.023345947266, + "relativeCreated": 1785.965919494629, "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:04,166", - "created": 1614535204.1660624, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,890", + "created": 1742744817.890486, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -153551,300 +9299,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 166.0623550415039, + "msecs": 890.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12653.630018234253, + "relativeCreated": 1794.172763824463, "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,166", - "created": 1614535204.166443, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 166.4431095123291, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12654.010772705078, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:04,166", - "created": 1614535204.1666474, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 166.64743423461914, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12654.215097427368, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,166", - "created": 1614535204.1668797, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 166.87965393066406, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12654.447317123413, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,167", - "created": 1614535204.1670456, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 167.04559326171875, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12654.613256454468, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,167", - "created": 1614535204.1672926, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 167.29259490966797, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12654.860258102417, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,167", - "created": 1614535204.167454, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 167.45400428771973, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12655.021667480469, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,167", - "created": 1614535204.1676965, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 167.69647598266602, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12655.264139175415, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,167", - "created": 1614535204.1678493, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 167.84930229187012, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12655.41696548462, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,168", - "created": 1614535204.1680613, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 168.0612564086914, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12655.62891960144, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,168", - "created": 1614535204.1682057, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 168.20573806762695, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12655.773401260376, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:04,168", - "created": 1614535204.1685333, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,890", + "created": 1742744817.8907797, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -153853,25 +9325,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 168.5333251953125, + "msecs": 890.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12656.100988388062, + "relativeCreated": 1794.466495513916, "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:04,169", - "created": 1614535204.1697342, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,891", + "created": 1742744817.8917308, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -153880,98 +9351,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 169.73423957824707, + "msecs": 891.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12657.301902770996, + "relativeCreated": 1795.4175472259521, "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,170", - "created": 1614535204.1701715, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 170.17149925231934, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12657.739162445068, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:04,170", - "created": 1614535204.170541, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 170.54104804992676, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12658.108711242676, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:04,171", - "created": 1614535204.1710439, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 171.04387283325195, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12658.611536026001, - "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -153981,54 +9370,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:04,171", - "created": 1614535204.1716268, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,891", + "created": 1742744817.8919857, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 171.62680625915527, + "msecs": 891.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12659.194469451904, + "relativeCreated": 1795.6724166870117, "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-02-28 19:00:04,171", - "created": 1614535204.1719682, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,892", + "created": 1742744817.8920732, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 171.9682216644287, + "msecs": 892.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12659.535884857178, + "relativeCreated": 1795.759916305542, "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -154038,36 +9425,34 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:04,172", - "created": 1614535204.1723778, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,892", + "created": 1742744817.8921804, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 172.3778247833252, + "msecs": 892.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12659.945487976074, + "relativeCreated": 1795.8672046661377, "stack_info": null, - "thread": 140380167190272, - "threadName": "Thread-17" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:04,173", - "created": 1614535204.1733725, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,892", + "created": 1742744817.8924928, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -154076,25 +9461,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 173.3725070953369, + "msecs": 892.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12660.940170288086, + "relativeCreated": 1796.1795330047607, "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:04,181", - "created": 1614535204.181956, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,900", + "created": 1742744817.9007432, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -154103,300 +9487,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 181.95605278015137, + "msecs": 900.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12669.5237159729, + "relativeCreated": 1804.4300079345703, "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,182", - "created": 1614535204.1823776, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 182.37757682800293, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12669.945240020752, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:04,182", - "created": 1614535204.1827135, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 182.71350860595703, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12670.281171798706, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,182", - "created": 1614535204.1829634, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 182.96337127685547, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12670.531034469604, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,183", - "created": 1614535204.1831472, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.14719200134277, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12670.714855194092, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,183", - "created": 1614535204.1833754, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 183.37535858154297, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12670.943021774292, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,183", - "created": 1614535204.1835325, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.5324764251709, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12671.10013961792, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,183", - "created": 1614535204.1837316, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 183.7315559387207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12671.29921913147, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,183", - "created": 1614535204.1838748, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.87484550476074, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12671.44250869751, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,184", - "created": 1614535204.1840758, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 184.07583236694336, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12671.643495559692, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,184", - "created": 1614535204.1841977, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 184.19766426086426, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12671.765327453613, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:04,184", - "created": 1614535204.1844466, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,901", + "created": 1742744817.901156, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -154405,25 +9513,24 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 184.4465732574463, + "msecs": 901.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12672.014236450195, + "relativeCreated": 1804.8427104949951, "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:04,185", - "created": 1614535204.1855552, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,902", + "created": 1742744817.9021544, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -154432,98 +9539,16 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 185.55521965026855, + "msecs": 902.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12673.122882843018, + "relativeCreated": 1805.8412075042725, "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,185", - "created": 1614535204.1858554, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 185.85538864135742, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12673.423051834106, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:04,186", - "created": 1614535204.1860306, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 186.03062629699707, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12673.598289489746, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:04,186", - "created": 1614535204.1862905, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 186.29050254821777, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12673.858165740967, - "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ @@ -154533,17464 +9558,70 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:04,186", - "created": 1614535204.186666, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,902", + "created": 1742744817.9025023, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 186.66601181030273, + "msecs": 902.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12674.233675003052, + "relativeCreated": 1806.1890602111816, "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-02-28 19:00:04,186", - "created": 1614535204.186867, - "exc_info": null, + "asctime": "2025-03-23 16:46:57,902", + "created": 1742744817.9026265, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 186.86699867248535, + "msecs": 902.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12674.434661865234, + "relativeCreated": 1806.3132762908936, "stack_info": null, - "thread": 140380158797568, - "threadName": "Thread-18" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" } ], - "msecs": 500.2772808074951, + "msecs": 224.0, "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12987.844944000244, + "relativeCreated": 2128.6683082580566, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.31341028213500977 + "time_consumption": 0.3223550319671631 }, { "args": [], - "asctime": "2021-02-28 19:00:04,501", - "created": 1614535204.501154, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service_existing_sid", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 334, - "message": "Adding a service with an already registered request SID", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - 10, - 18 - ], - "asctime": "2021-02-28 19:00:04,500", - "created": 1614535204.500896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "ERROR", - "levelno": 40, - "lineno": 583, - "message": "prot-server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", - "module": "__init__", - "msecs": 500.8959770202637, - "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because request SID is already registered", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12988.463640213013, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 501.15394592285156, - "msg": "Adding a service with an already registered request SID", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12988.7216091156, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002579689025878906 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:04,501", - "created": 1614535204.5019052, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service_existing_sid", - "levelname": "INFO", - "levelno": 20, - "lineno": 335, - "message": "Expected Exception RequestSidExistsError was triggered", - "module": "test_communication", - "moduleLogger": [], - "msecs": 501.9052028656006, - "msg": "Expected Exception RequestSidExistsError was triggered", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12989.47286605835, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:04,502", - "created": 1614535204.5024045, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service_existing_sid", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 343, - "message": "Adding a service with an already registered response SID", - "module": "test_communication", - "moduleLogger": [ - { - "args": [ - "prot-server:", - 17, - 11 - ], - "asctime": "2021-02-28 19:00:04,502", - "created": 1614535204.5022123, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "ERROR", - "levelno": 40, - "lineno": 586, - "message": "prot-server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", - "module": "__init__", - "msecs": 502.2122859954834, - "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because response SID is already registered", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12989.779949188232, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 502.40445137023926, - "msg": "Adding a service with an already registered response SID", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12989.972114562988, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00019216537475585938 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:04,502", - "created": 1614535204.5026453, - "exc_info": null, - "exc_text": null, - "filename": "test_communication.py", - "funcName": "add_service_existing_sid", - "levelname": "INFO", - "levelno": 20, - "lineno": 344, - "message": "Expected Exception ResponseSidExistsError was triggered", - "module": "test_communication", - "moduleLogger": [], - "msecs": 502.64525413513184, - "msg": "Expected Exception ResponseSidExistsError was triggered", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12990.21291732788, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.36074113845825195, - "time_finished": "2021-02-28 19:00:04,502", - "time_start": "2021-02-28 19:00:04,141" - }, - "_aA508E4gEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 19:00:08,335", - "created": 1614535208.3358676, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 53, - "message": "_aA508E4gEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 335.86764335632324, - "msg": "_aA508E4gEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16823.435306549072, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 19:00:08,346", - "created": 1614535208.3464196, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:08,337", - "created": 1614535208.337347, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 337.34703063964844, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16824.914693832397, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:08,338", - "created": 1614535208.3385608, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 338.5608196258545, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16826.128482818604, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:08,338", - "created": 1614535208.3388731, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 338.87314796447754, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16826.440811157227, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:08,339", - "created": 1614535208.3392634, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 339.2634391784668, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16826.831102371216, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:08,339", - "created": 1614535208.3394823, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 339.48230743408203, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16827.04997062683, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:08,339", - "created": 1614535208.3397517, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 339.7517204284668, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16827.319383621216, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:08,339", - "created": 1614535208.3399367, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 339.9367332458496, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16827.5043964386, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:08,340", - "created": 1614535208.3401039, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 340.1038646697998, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16827.67152786255, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:08,340", - "created": 1614535208.340263, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 340.26288986206055, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16827.83055305481, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:08,340", - "created": 1614535208.34044, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 340.440034866333, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16828.007698059082, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:08,340", - "created": 1614535208.3406217, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 340.6217098236084, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16828.189373016357, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:08,340", - "created": 1614535208.3408103, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 340.81029891967773, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16828.377962112427, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:08,340", - "created": 1614535208.3409836, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 340.98362922668457, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16828.551292419434, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:08,341", - "created": 1614535208.3411973, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 341.19725227355957, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16828.76491546631, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:08,341", - "created": 1614535208.3414185, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 341.4185047149658, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16828.986167907715, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:08,341", - "created": 1614535208.3417022, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 341.7022228240967, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16829.269886016846, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:08,341", - "created": 1614535208.3418784, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 341.87841415405273, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16829.4460773468, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:08,342", - "created": 1614535208.3420641, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 342.06414222717285, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16829.631805419922, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:08,342", - "created": 1614535208.3422585, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 342.2584533691406, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16829.82611656189, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:08,342", - "created": 1614535208.3424268, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 342.4267768859863, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16829.994440078735, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:08,342", - "created": 1614535208.342586, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 342.5860404968262, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16830.153703689575, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:08,342", - "created": 1614535208.342741, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 342.7410125732422, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16830.30867576599, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:08,342", - "created": 1614535208.3428984, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 342.8983688354492, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16830.4660320282, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:08,343", - "created": 1614535208.343234, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 343.2340621948242, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16830.801725387573, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:08,343", - "created": 1614535208.343426, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 343.425989151001, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16830.99365234375, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:08,343", - "created": 1614535208.3436518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 343.65177154541016, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16831.21943473816, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:08,343", - "created": 1614535208.3438208, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 343.82081031799316, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16831.388473510742, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:08,343", - "created": 1614535208.3439782, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 343.9781665802002, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16831.54582977295, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:08,344", - "created": 1614535208.3441308, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 344.1307544708252, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16831.698417663574, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:08,344", - "created": 1614535208.3442965, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 344.2964553833008, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16831.86411857605, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:08,344", - "created": 1614535208.344479, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 344.4790840148926, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16832.04674720764, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:08,344", - "created": 1614535208.3446476, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 344.6476459503174, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16832.215309143066, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:08,344", - "created": 1614535208.3448231, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 344.82312202453613, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16832.390785217285, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:08,344", - "created": 1614535208.3449833, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 344.9833393096924, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16832.55100250244, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:08,345", - "created": 1614535208.3451262, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 345.1261520385742, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16832.693815231323, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:08,345", - "created": 1614535208.3452797, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 345.2796936035156, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16832.847356796265, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:08,345", - "created": 1614535208.3454154, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 345.4153537750244, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16832.983016967773, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:08,345", - "created": 1614535208.3455539, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 345.5538749694824, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16833.12153816223, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:08,345", - "created": 1614535208.345713, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 345.71290016174316, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16833.280563354492, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:08,345", - "created": 1614535208.3458574, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 345.8573818206787, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16833.425045013428, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:08,345", - "created": 1614535208.3459914, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 345.9913730621338, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16833.559036254883, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:08,346", - "created": 1614535208.3461232, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 346.12321853637695, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16833.690881729126, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:08,346", - "created": 1614535208.3462782, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 346.27819061279297, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16833.845853805542, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 346.4195728302002, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16833.98723602295, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00014138221740722656 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:08,691", - "created": 1614535208.6918058, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:08,346", - "created": 1614535208.3469455, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 346.94552421569824, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16834.513187408447, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:08,347", - "created": 1614535208.3471894, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 347.18942642211914, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16834.757089614868, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:08,347", - "created": 1614535208.3473694, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 347.3694324493408, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16834.93709564209, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:08,347", - "created": 1614535208.347634, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 347.63407707214355, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16835.201740264893, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:08,348", - "created": 1614535208.348195, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 348.19507598876953, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16835.76273918152, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:08,348", - "created": 1614535208.3483977, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 348.39773178100586, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16835.965394973755, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:08,348", - "created": 1614535208.3486357, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 348.6356735229492, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16836.2033367157, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:08,349", - "created": 1614535208.3493834, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 349.3833541870117, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16836.95101737976, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:08,358", - "created": 1614535208.3580654, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 358.0653667449951, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16845.633029937744, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,358", - "created": 1614535208.358417, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 358.4170341491699, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16845.98469734192, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:08,358", - "created": 1614535208.358615, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 358.6149215698242, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16846.182584762573, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,358", - "created": 1614535208.3588405, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 358.8404655456543, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16846.408128738403, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,358", - "created": 1614535208.358998, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 358.99806022644043, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16846.56572341919, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,359", - "created": 1614535208.3592448, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 359.24482345581055, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16846.81248664856, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,359", - "created": 1614535208.3594007, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 359.40074920654297, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16846.968412399292, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,359", - "created": 1614535208.3596034, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 359.6034049987793, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16847.17106819153, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,359", - "created": 1614535208.3597486, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 359.74860191345215, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16847.3162651062, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,359", - "created": 1614535208.3599608, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 359.96079444885254, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16847.5284576416, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,360", - "created": 1614535208.3601103, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 360.1102828979492, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16847.6779460907, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:08,360", - "created": 1614535208.3603907, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 360.39066314697266, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16847.95832633972, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:08,361", - "created": 1614535208.361481, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 361.4809513092041, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16849.048614501953, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,361", - "created": 1614535208.3617995, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 361.7994785308838, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16849.367141723633, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:08,361", - "created": 1614535208.3619976, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 361.9976043701172, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16849.565267562866, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:08,362", - "created": 1614535208.3622406, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 362.2405529022217, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16849.80821609497, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:08,362", - "created": 1614535208.362639, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 362.6389503479004, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16850.20661354065, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:08,362", - "created": 1614535208.3628335, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 362.83349990844727, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16850.401163101196, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:08,363", - "created": 1614535208.3630857, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 363.0857467651367, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16850.653409957886, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:08,363", - "created": 1614535208.36394, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 363.9400005340576, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16851.507663726807, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:08,372", - "created": 1614535208.3724654, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 372.4653720855713, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16860.03303527832, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,372", - "created": 1614535208.3727906, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 372.7905750274658, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16860.358238220215, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:08,372", - "created": 1614535208.3729722, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 372.9722499847412, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16860.53991317749, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,373", - "created": 1614535208.3731825, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 373.1825351715088, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16860.750198364258, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,373", - "created": 1614535208.373333, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 373.3329772949219, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16860.90064048767, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,373", - "created": 1614535208.3735595, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 373.55947494506836, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16861.127138137817, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,373", - "created": 1614535208.3737862, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 373.78621101379395, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16861.353874206543, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,373", - "created": 1614535208.3739953, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 373.995304107666, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16861.562967300415, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,374", - "created": 1614535208.3741386, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 374.13859367370605, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16861.706256866455, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,374", - "created": 1614535208.374323, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 374.32289123535156, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16861.8905544281, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,374", - "created": 1614535208.3744602, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 374.46022033691406, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16862.027883529663, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:08,374", - "created": 1614535208.3747306, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 374.73058700561523, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16862.298250198364, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:08,375", - "created": 1614535208.3758032, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 375.80323219299316, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16863.370895385742, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,376", - "created": 1614535208.376133, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 376.1329650878906, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16863.70062828064, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:08,376", - "created": 1614535208.3763075, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 376.30748748779297, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16863.875150680542, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:08,376", - "created": 1614535208.3765597, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 376.5597343444824, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16864.12739753723, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:08,376", - "created": 1614535208.3769479, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 376.94787979125977, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16864.51554298401, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:08,377", - "created": 1614535208.377141, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 377.14099884033203, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16864.70866203308, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - } - ], - "msecs": 691.8058395385742, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17179.373502731323, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.3146648406982422 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:08,692", - "created": 1614535208.6928728, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:08,692", - "created": 1614535208.6924539, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): True ()", - "module": "test", - "msecs": 692.4538612365723, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17180.02152442932, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:08,692", - "created": 1614535208.6926723, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = True ()", - "module": "test", - "msecs": 692.6722526550293, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17180.23991584778, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 692.8727626800537, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17180.440425872803, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00020051002502441406 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:08,693", - "created": 1614535208.6934853, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:08,693", - "created": 1614535208.6931617, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): True ()", - "module": "test", - "msecs": 693.1617259979248, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17180.729389190674, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:08,693", - "created": 1614535208.6933296, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = True ()", - "module": "test", - "msecs": 693.3295726776123, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17180.89723587036, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 693.4852600097656, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17181.052923202515, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001556873321533203 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:08,694", - "created": 1614535208.694811, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:08,693", - "created": 1614535208.6937656, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 693.7656402587891, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17181.333303451538, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:08,693", - "created": 1614535208.6939588, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 693.9587593078613, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17181.52642250061, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:08,694", - "created": 1614535208.6941214, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 694.1213607788086, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17181.689023971558, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:08,694", - "created": 1614535208.694274, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 694.2739486694336, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17181.841611862183, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:08,694", - "created": 1614535208.694478, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): False ()", - "module": "test", - "msecs": 694.4780349731445, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17182.045698165894, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:08,694", - "created": 1614535208.6946447, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = False ()", - "module": "test", - "msecs": 694.6446895599365, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17182.212352752686, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 694.8111057281494, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17182.3787689209, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00016641616821289062 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:08,695", - "created": 1614535208.695388, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:08,695", - "created": 1614535208.6950822, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): False ()", - "module": "test", - "msecs": 695.0821876525879, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17182.649850845337, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:08,695", - "created": 1614535208.6952403, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = False ()", - "module": "test", - "msecs": 695.2402591705322, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17182.80792236328, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 695.3880786895752, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17182.955741882324, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00014781951904296875 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:09,041", - "created": 1614535209.0411258, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 19, - "message": "Connecting Server and Client", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:08,695", - "created": 1614535208.6956224, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 695.622444152832, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17183.19010734558, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:08,695", - "created": 1614535208.6957827, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 695.7826614379883, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17183.350324630737, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:08,695", - "created": 1614535208.6959412, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 695.9412097930908, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17183.50887298584, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:08,696", - "created": 1614535208.696232, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 696.2320804595947, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17183.799743652344, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:08,696", - "created": 1614535208.696894, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 696.8939304351807, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17184.46159362793, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:08,697", - "created": 1614535208.6972084, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 697.2084045410156, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17184.776067733765, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:08,697", - "created": 1614535208.6974816, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 697.481632232666, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17185.049295425415, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:08,698", - "created": 1614535208.6984954, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 698.4953880310059, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17186.063051223755, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:08,707", - "created": 1614535208.7070386, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 707.0386409759521, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17194.6063041687, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,707", - "created": 1614535208.7074566, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 707.4565887451172, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17195.024251937866, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:08,707", - "created": 1614535208.7076976, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 707.6976299285889, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17195.265293121338, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,708", - "created": 1614535208.7080035, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 708.0035209655762, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17195.571184158325, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,708", - "created": 1614535208.708198, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 708.198070526123, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17195.765733718872, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,708", - "created": 1614535208.7084582, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 708.4581851959229, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17196.025848388672, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,708", - "created": 1614535208.7086232, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 708.6231708526611, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17196.19083404541, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,708", - "created": 1614535208.7088518, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 708.8518142700195, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17196.41947746277, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,709", - "created": 1614535208.7090232, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 709.0232372283936, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17196.590900421143, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,709", - "created": 1614535208.7092395, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 709.2394828796387, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17196.807146072388, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,709", - "created": 1614535208.7094061, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 709.4061374664307, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17196.97380065918, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:08,709", - "created": 1614535208.709788, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 709.7880840301514, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17197.3557472229, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:08,710", - "created": 1614535208.7109826, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 710.9825611114502, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17198.5502243042, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,711", - "created": 1614535208.7113626, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 711.3626003265381, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17198.930263519287, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:08,711", - "created": 1614535208.7116036, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 711.6036415100098, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17199.17130470276, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:08,711", - "created": 1614535208.7119105, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 711.9104862213135, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17199.478149414062, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:08,712", - "created": 1614535208.7123911, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 712.3911380767822, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17199.95880126953, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:08,712", - "created": 1614535208.7126548, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 712.6548290252686, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17200.222492218018, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:08,712", - "created": 1614535208.71295, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 712.9499912261963, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17200.517654418945, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:08,714", - "created": 1614535208.7140753, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 714.0753269195557, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17201.642990112305, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:08,722", - "created": 1614535208.7226548, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 722.6548194885254, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17210.222482681274, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,723", - "created": 1614535208.7230415, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 723.0415344238281, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17210.609197616577, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:08,723", - "created": 1614535208.72324, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 723.2398986816406, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17210.80756187439, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,723", - "created": 1614535208.7234905, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 723.4904766082764, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17211.058139801025, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,723", - "created": 1614535208.7236562, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 723.656177520752, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17211.2238407135, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,723", - "created": 1614535208.7238932, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 723.8931655883789, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17211.460828781128, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,724", - "created": 1614535208.7240436, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 724.043607711792, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17211.61127090454, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,724", - "created": 1614535208.7242541, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 724.2541313171387, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17211.821794509888, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,724", - "created": 1614535208.7244086, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 724.4086265563965, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17211.976289749146, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,724", - "created": 1614535208.72462, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 724.6201038360596, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17212.18776702881, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,724", - "created": 1614535208.724773, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 724.7729301452637, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17212.340593338013, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:08,725", - "created": 1614535208.7250714, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 725.0714302062988, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17212.639093399048, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:08,726", - "created": 1614535208.7261848, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 726.1848449707031, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17213.752508163452, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,726", - "created": 1614535208.7264946, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 726.494550704956, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17214.062213897705, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:08,726", - "created": 1614535208.7267356, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 726.7355918884277, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17214.303255081177, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:08,727", - "created": 1614535208.727034, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 727.0340919494629, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17214.601755142212, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:08,727", - "created": 1614535208.727482, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 727.4820804595947, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17215.049743652344, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:08,727", - "created": 1614535208.727712, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 727.7119159698486, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17215.279579162598, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - } - ], - "msecs": 41.12577438354492, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17528.693437576294, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.3134138584136963 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,042", - "created": 1614535209.0422635, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,041", - "created": 1614535209.0417984, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): True ()", - "module": "test", - "msecs": 41.79835319519043, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17529.36601638794, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,042", - "created": 1614535209.0420525, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = True ()", - "module": "test", - "msecs": 42.052507400512695, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17529.62017059326, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 42.26350784301758, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17529.831171035767, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002110004425048828 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,042", - "created": 1614535209.0429704, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,042", - "created": 1614535209.042587, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): True ()", - "module": "test", - "msecs": 42.5870418548584, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17530.154705047607, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,042", - "created": 1614535209.0427768, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = True ()", - "module": "test", - "msecs": 42.77682304382324, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17530.344486236572, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 42.97041893005371, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17530.538082122803, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00019359588623046875 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:09,043", - "created": 1614535209.0432446, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Adding secrets to socket_protocol", - "module": "test_add_methods", - "moduleLogger": [], - "msecs": 43.24460029602051, - "msg": "Adding secrets to socket_protocol", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17530.81226348877, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,043", - "created": 1614535209.0438356, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,043", - "created": 1614535209.0435078, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): False ()", - "module": "test", - "msecs": 43.50781440734863, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17531.075477600098, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,043", - "created": 1614535209.0436814, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = False ()", - "module": "test", - "msecs": 43.68138313293457, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17531.249046325684, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 43.83563995361328, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17531.403303146362, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015425682067871094 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,044", - "created": 1614535209.044926, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,044", - "created": 1614535209.0445967, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): False ()", - "module": "test", - "msecs": 44.59667205810547, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17532.164335250854, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,044", - "created": 1614535209.0447707, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = False ()", - "module": "test", - "msecs": 44.77071762084961, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17532.3383808136, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 44.92592811584473, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17532.493591308594, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001552104949951172 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:09,146", - "created": 1614535209.1464992, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "connection_established", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 31, - "message": "Doing authentification", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,045", - "created": 1614535209.0453005, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 45.30048370361328, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17532.868146896362, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,046", - "created": 1614535209.046276, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 46.276092529296875, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17533.843755722046, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,054", - "created": 1614535209.0548246, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 54.8245906829834, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17542.392253875732, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,055", - "created": 1614535209.0551946, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 55.19461631774902, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17542.762279510498, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,055", - "created": 1614535209.0553982, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 55.39822578430176, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17542.96588897705, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,055", - "created": 1614535209.0556324, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 55.63235282897949, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17543.20001602173, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,055", - "created": 1614535209.055798, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 55.79805374145508, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17543.365716934204, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,056", - "created": 1614535209.0560699, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 56.06985092163086, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17543.63751411438, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,056", - "created": 1614535209.0562248, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 56.224822998046875, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17543.792486190796, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,056", - "created": 1614535209.056455, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 56.45489692687988, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17544.02256011963, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,056", - "created": 1614535209.056608, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 56.607961654663086, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17544.175624847412, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,056", - "created": 1614535209.0568066, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 56.80656433105469, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17544.374227523804, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,056", - "created": 1614535209.0569549, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 56.95486068725586, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17544.522523880005, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(6): fd 82 a2 a9 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,057", - "created": 1614535209.0572462, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", - "module": "__init__", - "msecs": 57.24620819091797, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17544.813871383667, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(6): fd 82 a2 a9 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,058", - "created": 1614535209.0583675, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", - "module": "__init__", - "msecs": 58.36749076843262, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17545.93515396118, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,058", - "created": 1614535209.0586758, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 58.67576599121094, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17546.24342918396, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,058", - "created": 1614535209.0588772, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 58.87722969055176, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17546.4448928833, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - "(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 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 fd 82 a2 a9" - ], - "asctime": "2021-02-28 19:00:09,059", - "created": 1614535209.059184, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 fd 82 a2 a9", - "module": "stp", - "msecs": 59.18407440185547, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17546.751737594604, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: seed", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,059", - "created": 1614535209.0596554, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 59.65542793273926, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17547.22309112549, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "__authentificate_create_seed__" - ], - "asctime": "2021-02-28 19:00:09,059", - "created": 1614535209.05988, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", - "module": "__init__", - "msecs": 59.88001823425293, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17547.447681427002, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: seed", - "status: okay", - "'9bb48ec8638270557aaffe5d80e4088c626d78c335256480b66fdbc6daf505ea'" - ], - "asctime": "2021-02-28 19:00:09,060", - "created": 1614535209.0601838, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'9bb48ec8638270557aaffe5d80e4088c626d78c335256480b66fdbc6daf505ea'\"", - "module": "__init__", - "msecs": 60.18376350402832, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17547.751426696777, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 62 62 34" - ], - "asctime": "2021-02-28 19:00:09,061", - "created": 1614535209.0613866, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 62 62 34", - "module": "__init__", - "msecs": 61.3865852355957, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17548.954248428345, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 62 62 34" - ], - "asctime": "2021-02-28 19:00:09,070", - "created": 1614535209.0700297, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 62 62 34", - "module": "__init__", - "msecs": 70.02973556518555, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17557.597398757935, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,070", - "created": 1614535209.070396, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 70.39594650268555, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17557.963609695435, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,070", - "created": 1614535209.070597, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 70.59693336486816, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17558.164596557617, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,070", - "created": 1614535209.0708318, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 70.8317756652832, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17558.399438858032, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,070", - "created": 1614535209.0709968, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 70.99676132202148, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17558.56442451477, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,071", - "created": 1614535209.0712337, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 71.23374938964844, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17558.801412582397, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,071", - "created": 1614535209.0713828, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 71.38276100158691, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17558.950424194336, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,071", - "created": 1614535209.0715911, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 71.59113883972168, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17559.15880203247, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,071", - "created": 1614535209.071739, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 71.73895835876465, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17559.306621551514, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,071", - "created": 1614535209.0719683, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 71.96831703186035, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17559.53598022461, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,072", - "created": 1614535209.0721145, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 72.11446762084961, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17559.6821308136, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(64): 38 65 63 38 36 33 38 32 37 30 35 35 37 61 61 66 66 65 35 64 38 30 65 34 30 38 38 63 36 32 36 64 37 38 63 33 33 35 32 35 36 34 38 30 62 36 36 66 64 62 63 36 64 61 66 35 30 35 65 61 22 7d 4d 30" - ], - "asctime": "2021-02-28 19:00:09,072", - "created": 1614535209.072493, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 38 65 63 38 36 33 38 32 37 30 35 35 37 61 61 66 66 65 35 64 38 30 65 34 30 38 38 63 36 32 36 64 37 38 63 33 33 35 32 35 36 34 38 30 62 36 36 66 64 62 63 36 64 61 66 35 30 35 65 61 22 7d 4d 30", - "module": "__init__", - "msecs": 72.49307632446289, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17560.060739517212, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 38 65 63 38 36 33 38 32 37 30 35 35 37 61 61 66 66 65 35 64 38 30 65 34 30 38 38 63 36 32 36 64 37 38 63 33 33 35 32 35 36 34 38 30 62 36 36 66 64 62 63 36 64 61 66 35 30 35 65 61 22 7d 4d 30" - ], - "asctime": "2021-02-28 19:00:09,081", - "created": 1614535209.0812154, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 38 65 63 38 36 33 38 32 37 30 35 35 37 61 61 66 66 65 35 64 38 30 65 34 30 38 38 63 36 32 36 64 37 38 63 33 33 35 32 35 36 34 38 30 62 36 36 66 64 62 63 36 64 61 66 35 30 35 65 61 22 7d 4d 30", - "module": "__init__", - "msecs": 81.21538162231445, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17568.783044815063, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(4): 43 80 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,082", - "created": 1614535209.0820174, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (4): 43 80 3a 3e", - "module": "__init__", - "msecs": 82.01742172241211, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17569.58508491516, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(4): 43 80 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,083", - "created": 1614535209.0832567, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (4): 43 80 3a 3e", - "module": "__init__", - "msecs": 83.25672149658203, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17570.82438468933, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,083", - "created": 1614535209.083556, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 83.55593681335449, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17571.123600006104, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,083", - "created": 1614535209.0837545, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 83.7545394897461, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17571.322202682495, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 62 62 34 38 65 63 38 36 33 38 32 37 30 35 35 37 61 61 66 66 65 35 64 38 30 65 34 30 38 38 63 36 32 36 64 37 38 63 33 33 35 32 35 36 34 38 30 62 36 36 66 64 62 63 36 64 61 66 35 30 35 65 61 22 7d 4d 30 43 80" - ], - "asctime": "2021-02-28 19:00:09,084", - "created": 1614535209.084134, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 39 62 62 34 38 65 63 38 36 33 38 32 37 30 35 35 37 61 61 66 66 65 35 64 38 30 65 34 30 38 38 63 36 32 36 64 37 38 63 33 33 35 32 35 36 34 38 30 62 36 36 66 64 62 63 36 64 61 66 35 30 35 65 61 22 7d 4d 30 43 80", - "module": "stp", - "msecs": 84.13410186767578, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17571.701765060425, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: seed", - "status: okay", - "'9bb48ec8638270557aaffe5d80e4088c626d78c335256480b66fdbc6daf505ea'" - ], - "asctime": "2021-02-28 19:00:09,084", - "created": 1614535209.0846312, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'9bb48ec8638270557aaffe5d80e4088c626d78c335256480b66fdbc6daf505ea'\"", - "module": "__init__", - "msecs": 84.63120460510254, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17572.19886779785, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "__authentificate_create_key__" - ], - "asctime": "2021-02-28 19:00:09,084", - "created": 1614535209.0848632, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", - "module": "__init__", - "msecs": 84.86318588256836, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17572.430849075317, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: authentification request, data_id: key", - "status: okay", - "'1896e78394ec5309ef0184c803d96539357900ce28428e9ee33b090f938776a696c4e8f9fbae78d6a02d87369441b147b562161e3df3092303835d3bb372b784'" - ], - "asctime": "2021-02-28 19:00:09,085", - "created": 1614535209.085191, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'1896e78394ec5309ef0184c803d96539357900ce28428e9ee33b090f938776a696c4e8f9fbae78d6a02d87369441b147b562161e3df3092303835d3bb372b784'\"", - "module": "__init__", - "msecs": 85.19101142883301, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17572.758674621582, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 38 39 36" - ], - "asctime": "2021-02-28 19:00:09,086", - "created": 1614535209.0865424, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 38 39 36", - "module": "__init__", - "msecs": 86.54236793518066, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17574.11003112793, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 38 39 36" - ], - "asctime": "2021-02-28 19:00:09,095", - "created": 1614535209.095046, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 31 38 39 36", - "module": "__init__", - "msecs": 95.0460433959961, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17582.613706588745, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,095", - "created": 1614535209.0953975, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 95.3974723815918, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17582.96513557434, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,095", - "created": 1614535209.0955987, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 95.59869766235352, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17583.166360855103, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,095", - "created": 1614535209.0958366, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 95.83663940429688, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17583.404302597046, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,096", - "created": 1614535209.0960054, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 96.00543975830078, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17583.57310295105, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,096", - "created": 1614535209.0962088, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 96.20881080627441, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17583.776473999023, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,096", - "created": 1614535209.0963385, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 96.33851051330566, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17583.906173706055, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,096", - "created": 1614535209.096519, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 96.51899337768555, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17584.086656570435, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,096", - "created": 1614535209.0966458, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 96.64583206176758, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17584.213495254517, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,096", - "created": 1614535209.0968153, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 96.81534767150879, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17584.383010864258, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,096", - "created": 1614535209.0969741, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 96.97413444519043, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17584.54179763794, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(64): 65 37 38 33 39 34 65 63 35 33 30 39 65 66 30 31 38 34 63 38 30 33 64 39 36 35 33 39 33 35 37 39 30 30 63 65 32 38 34 32 38 65 39 65 65 33 33 62 30 39 30 66 39 33 38 37 37 36 61 36 39 36 63 34" - ], - "asctime": "2021-02-28 19:00:09,097", - "created": 1614535209.097316, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 65 37 38 33 39 34 65 63 35 33 30 39 65 66 30 31 38 34 63 38 30 33 64 39 36 35 33 39 33 35 37 39 30 30 63 65 32 38 34 32 38 65 39 65 65 33 33 62 30 39 30 66 39 33 38 37 37 36 61 36 39 36 63 34", - "module": "__init__", - "msecs": 97.31602668762207, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17584.88368988037, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 65 37 38 33 39 34 65 63 35 33 30 39 65 66 30 31 38 34 63 38 30 33 64 39 36 35 33 39 33 35 37 39 30 30 63 65 32 38 34 32 38 65 39 65 65 33 33 62 30 39 30 66 39 33 38 37 37 36 61 36 39 36 63 34" - ], - "asctime": "2021-02-28 19:00:09,105", - "created": 1614535209.1058304, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 65 37 38 33 39 34 65 63 35 33 30 39 65 66 30 31 38 34 63 38 30 33 64 39 36 35 33 39 33 35 37 39 30 30 63 65 32 38 34 32 38 65 39 65 65 33 33 62 30 39 30 66 39 33 38 37 37 36 61 36 39 36 63 34", - "module": "__init__", - "msecs": 105.83043098449707, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17593.398094177246, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(64): 65 38 66 39 66 62 61 65 37 38 64 36 61 30 32 64 38 37 33 36 39 34 34 31 62 31 34 37 62 35 36 32 31 36 31 65 33 64 66 33 30 39 32 33 30 33 38 33 35 64 33 62 62 33 37 32 62 37 38 34 22 7d 75 e6" - ], - "asctime": "2021-02-28 19:00:09,106", - "created": 1614535209.106613, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 65 38 66 39 66 62 61 65 37 38 64 36 61 30 32 64 38 37 33 36 39 34 34 31 62 31 34 37 62 35 36 32 31 36 31 65 33 64 66 33 30 39 32 33 30 33 38 33 35 64 33 62 62 33 37 32 62 37 38 34 22 7d 75 e6", - "module": "__init__", - "msecs": 106.6129207611084, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17594.180583953857, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 65 38 66 39 66 62 61 65 37 38 64 36 61 30 32 64 38 37 33 36 39 34 34 31 62 31 34 37 62 35 36 32 31 36 31 65 33 64 66 33 30 39 32 33 30 33 38 33 35 64 33 62 62 33 37 32 62 37 38 34 22 7d 75 e6" - ], - "asctime": "2021-02-28 19:00:09,115", - "created": 1614535209.115086, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 65 38 66 39 66 62 61 65 37 38 64 36 61 30 32 64 38 37 33 36 39 34 34 31 62 31 34 37 62 35 36 32 31 36 31 65 33 64 66 33 30 39 32 33 30 33 38 33 35 64 33 62 62 33 37 32 62 37 38 34 22 7d 75 e6", - "module": "__init__", - "msecs": 115.08607864379883, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17602.653741836548, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-client:", - "(4): 88 37 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,115", - "created": 1614535209.115896, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (4): 88 37 3a 3e", - "module": "__init__", - "msecs": 115.89598655700684, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17603.463649749756, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(4): 88 37 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,116", - "created": 1614535209.1168103, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (4): 88 37 3a 3e", - "module": "__init__", - "msecs": 116.81032180786133, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17604.37798500061, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,117", - "created": 1614535209.11711, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 117.11001396179199, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17604.67767715454, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,117", - "created": 1614535209.1173122, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 117.31219291687012, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17604.87985610962, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 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 38 39 36 65 37 38 33 39 34 65 63 35 33 30 39 65 66 30 31 38 34 63 38 30 33 64 39 36 35 33 39 33 35 37 39 30 30 63 65 32 38 34 32 38 65 39 65 65 33 33 62 30 39 30 66 39 33 38 37 37 36 61 36 39 36 63 34 65 38 66 39 66 62 61 65 37 38 64 36 61 30 32 64 38 37 33 36 39 34 34 31 62 31 34 37 62 35 36 32 31 36 31 65 33 64 66 33 30 39 32 33 30 33 38 33 35 64 33 62 62 33 37 32 62 37 38 34 22 7d 75 e6 88 37" - ], - "asctime": "2021-02-28 19:00:09,117", - "created": 1614535209.1178656, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 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 38 39 36 65 37 38 33 39 34 65 63 35 33 30 39 65 66 30 31 38 34 63 38 30 33 64 39 36 35 33 39 33 35 37 39 30 30 63 65 32 38 34 32 38 65 39 65 65 33 33 62 30 39 30 66 39 33 38 37 37 36 61 36 39 36 63 34 65 38 66 39 66 62 61 65 37 38 64 36 61 30 32 64 38 37 33 36 39 34 34 31 62 31 34 37 62 35 36 32 31 36 31 65 33 64 66 33 30 39 32 33 30 33 38 33 35 64 33 62 62 33 37 32 62 37 38 34 22 7d 75 e6 88 37", - "module": "stp", - "msecs": 117.86556243896484, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17605.433225631714, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: authentification request, data_id: key", - "status: okay", - "'1896e78394ec5309ef0184c803d96539357900ce28428e9ee33b090f938776a696c4e8f9fbae78d6a02d87369441b147b562161e3df3092303835d3bb372b784'" - ], - "asctime": "2021-02-28 19:00:09,118", - "created": 1614535209.1183424, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'1896e78394ec5309ef0184c803d96539357900ce28428e9ee33b090f938776a696c4e8f9fbae78d6a02d87369441b147b562161e3df3092303835d3bb372b784'\"", - "module": "__init__", - "msecs": 118.34239959716797, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17605.910062789917, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "__authentificate_check_key__" - ], - "asctime": "2021-02-28 19:00:09,118", - "created": 1614535209.1185882, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", - "module": "__init__", - "msecs": 118.58820915222168, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17606.15587234497, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 19:00:09,118", - "created": 1614535209.118916, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 118.91603469848633, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17606.483697891235, - "stack_info": null, - "thread": 140379110233856, - "threadName": "Thread-29" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" - ], - "asctime": "2021-02-28 19:00:09,120", - "created": 1614535209.1203759, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", - "module": "__init__", - "msecs": 120.3758716583252, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17607.943534851074, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" - ], - "asctime": "2021-02-28 19:00:09,128", - "created": 1614535209.1289911, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", - "module": "__init__", - "msecs": 128.99112701416016, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17616.55879020691, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,129", - "created": 1614535209.129347, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 129.3470859527588, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17616.914749145508, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,129", - "created": 1614535209.1295383, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 129.53829765319824, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17617.105960845947, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,130", - "created": 1614535209.1300309, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 130.03087043762207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17617.59853363037, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,130", - "created": 1614535209.1302197, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 130.2196979522705, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17617.78736114502, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,130", - "created": 1614535209.130461, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 130.4609775543213, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17618.02864074707, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,130", - "created": 1614535209.1306138, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 130.6138038635254, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17618.181467056274, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,130", - "created": 1614535209.1308208, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 130.82075119018555, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17618.388414382935, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,130", - "created": 1614535209.1309676, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 130.9676170349121, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17618.53528022766, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,131", - "created": 1614535209.1311758, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 131.17575645446777, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17618.743419647217, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,131", - "created": 1614535209.1313221, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 131.32214546203613, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17618.889808654785, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-server:", - "(6): 94 fe 74 32 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,131", - "created": 1614535209.131617, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", - "module": "__init__", - "msecs": 131.61706924438477, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17619.184732437134, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "comm-client:", - "(6): 94 fe 74 32 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,132", - "created": 1614535209.1327367, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", - "module": "__init__", - "msecs": 132.7366828918457, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17620.304346084595, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,133", - "created": 1614535209.1330445, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 133.04448127746582, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17620.612144470215, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,133", - "created": 1614535209.1332421, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 133.24213027954102, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17620.80979347229, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "STP:", - "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 74 72 75 65 7d 94 fe 74 32" - ], - "asctime": "2021-02-28 19:00:09,133", - "created": 1614535209.1335175, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 74 72 75 65 7d 94 fe 74 32", - "module": "stp", - "msecs": 133.51750373840332, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17621.085166931152, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: authentification response, data_id: key", - "status: okay", - "True" - ], - "asctime": "2021-02-28 19:00:09,133", - "created": 1614535209.1339908, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", - "module": "__init__", - "msecs": 133.99076461791992, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17621.55842781067, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:", - "__authentificate_process_feedback__" - ], - "asctime": "2021-02-28 19:00:09,134", - "created": 1614535209.1342144, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", - "module": "__init__", - "msecs": 134.2144012451172, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17621.782064437866, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,134", - "created": 1614535209.1344128, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentificate_process_feedback__", - "levelname": "INFO", - "levelno": 20, - "lineno": 372, - "message": "prot-client: Got positive authentification feedback", - "module": "__init__", - "msecs": 134.4127655029297, - "msg": "%s Got positive authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17621.98042869568, - "stack_info": null, - "thread": 140379101841152, - "threadName": "Thread-30" - } - ], - "msecs": 146.4991569519043, - "msg": "Doing authentification", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17634.066820144653, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.01208639144897461 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,147", - "created": 1614535209.147659, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,147", - "created": 1614535209.1472375, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client connection status): True ()", - "module": "test", - "msecs": 147.23753929138184, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17634.80520248413, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,147", - "created": 1614535209.1474745, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client connection status): result = True ()", - "module": "test", - "msecs": 147.4745273590088, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17635.042190551758, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 147.6590633392334, - "msg": "Client connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17635.226726531982, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00018453598022460938 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,148", - "created": 1614535209.1482666, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,147", - "created": 1614535209.1479456, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server connection status): True ()", - "module": "test", - "msecs": 147.94564247131348, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17635.513305664062, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,148", - "created": 1614535209.1481106, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server connection status): result = True ()", - "module": "test", - "msecs": 148.11062812805176, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17635.6782913208, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 148.26655387878418, - "msg": "Server connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17635.834217071533, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015592575073242188 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.8123989105224609, - "time_finished": "2021-02-28 19:00:09,148", - "time_start": "2021-02-28 19:00:08,335" - }, - "_elO7wE4gEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 19:00:09,148", - "created": 1614535209.148965, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 54, - "message": "_elO7wE4gEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 148.96488189697266, - "msg": "_elO7wE4gEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17636.53254508972, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 19:00:09,159", - "created": 1614535209.1594274, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,150", - "created": 1614535209.1502225, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 150.2225399017334, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17637.790203094482, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,151", - "created": 1614535209.1514869, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 151.48687362670898, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17639.054536819458, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,151", - "created": 1614535209.1517956, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 151.7956256866455, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17639.363288879395, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,152", - "created": 1614535209.1521845, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 152.18448638916016, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17639.75214958191, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:09,152", - "created": 1614535209.1523964, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 152.39644050598145, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17639.96410369873, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:09,152", - "created": 1614535209.152648, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 152.6479721069336, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17640.215635299683, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:09,152", - "created": 1614535209.1528294, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 152.82940864562988, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17640.39707183838, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:09,153", - "created": 1614535209.153017, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 153.0170440673828, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17640.584707260132, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:09,153", - "created": 1614535209.1531844, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 153.1844139099121, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17640.75207710266, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:09,153", - "created": 1614535209.15338, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 153.3799171447754, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17640.947580337524, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:09,153", - "created": 1614535209.153579, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 153.5789966583252, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17641.146659851074, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:09,153", - "created": 1614535209.1538107, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 153.8107395172119, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17641.37840270996, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:09,153", - "created": 1614535209.153986, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 153.98597717285156, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17641.5536403656, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,154", - "created": 1614535209.15414, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 154.13999557495117, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17641.7076587677, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:09,154", - "created": 1614535209.154314, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 154.3140411376953, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17641.881704330444, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:09,154", - "created": 1614535209.1545095, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 154.5095443725586, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17642.077207565308, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:09,154", - "created": 1614535209.1546733, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 154.67333793640137, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17642.24100112915, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:09,154", - "created": 1614535209.1548429, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 154.84285354614258, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17642.41051673889, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:09,155", - "created": 1614535209.1550136, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 155.0135612487793, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17642.58122444153, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:09,155", - "created": 1614535209.155186, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 155.18593788146973, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17642.75360107422, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:09,155", - "created": 1614535209.1553435, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 155.34353256225586, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17642.911195755005, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:09,155", - "created": 1614535209.1555157, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 155.5156707763672, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17643.083333969116, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,155", - "created": 1614535209.1556756, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 155.67564964294434, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17643.243312835693, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,155", - "created": 1614535209.1559997, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 155.99966049194336, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17643.567323684692, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:09,156", - "created": 1614535209.1561527, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 156.15272521972656, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17643.720388412476, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:09,156", - "created": 1614535209.156342, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 156.3420295715332, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17643.909692764282, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:09,156", - "created": 1614535209.156486, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 156.48603439331055, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17644.05369758606, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:09,156", - "created": 1614535209.156621, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 156.62097930908203, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17644.18864250183, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:09,156", - "created": 1614535209.1567557, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 156.7556858062744, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17644.323348999023, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:09,156", - "created": 1614535209.1568992, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 156.89921379089355, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17644.466876983643, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:09,157", - "created": 1614535209.1570473, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 157.04727172851562, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17644.614934921265, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:09,157", - "created": 1614535209.1572163, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 157.21631050109863, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17644.783973693848, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:09,157", - "created": 1614535209.1575706, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 157.57060050964355, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17645.138263702393, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,157", - "created": 1614535209.1578665, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 157.8664779663086, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17645.434141159058, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:09,158", - "created": 1614535209.1580644, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 158.0643653869629, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17645.632028579712, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:09,158", - "created": 1614535209.1582494, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 158.2493782043457, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17645.817041397095, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:09,158", - "created": 1614535209.1584008, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 158.4007740020752, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17645.968437194824, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:09,158", - "created": 1614535209.1585557, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 158.5557460784912, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17646.12340927124, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:09,158", - "created": 1614535209.1587098, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 158.70976448059082, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17646.27742767334, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:09,158", - "created": 1614535209.1588545, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 158.85448455810547, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17646.422147750854, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:09,158", - "created": 1614535209.1589904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 158.99038314819336, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17646.558046340942, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:09,159", - "created": 1614535209.159139, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 159.13891792297363, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17646.706581115723, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,159", - "created": 1614535209.159293, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 159.29293632507324, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17646.860599517822, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 159.42740440368652, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17646.995067596436, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00013446807861328125 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:09,504", - "created": 1614535209.5045204, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,159", - "created": 1614535209.1597226, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 159.72256660461426, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17647.290229797363, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,159", - "created": 1614535209.1598785, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 159.87849235534668, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17647.446155548096, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,160", - "created": 1614535209.160015, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 160.01510620117188, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17647.58276939392, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,160", - "created": 1614535209.160256, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 160.25590896606445, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17647.823572158813, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,160", - "created": 1614535209.1608157, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 160.81571578979492, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17648.383378982544, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,160", - "created": 1614535209.1609802, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 160.980224609375, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17648.547887802124, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,161", - "created": 1614535209.161122, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 161.12208366394043, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17648.68974685669, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,161", - "created": 1614535209.161528, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 161.5281105041504, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17649.0957736969, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,170", - "created": 1614535209.1701014, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 170.10140419006348, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17657.669067382812, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,170", - "created": 1614535209.1704175, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 170.41754722595215, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17657.9852104187, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,170", - "created": 1614535209.170592, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 170.5920696258545, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17658.159732818604, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,170", - "created": 1614535209.1708326, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 170.83263397216797, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17658.400297164917, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,170", - "created": 1614535209.170984, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 170.98402976989746, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17658.551692962646, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,171", - "created": 1614535209.171214, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 171.21410369873047, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17658.78176689148, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,171", - "created": 1614535209.1713603, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 171.36025428771973, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17658.92791748047, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,171", - "created": 1614535209.1715593, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 171.55933380126953, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17659.12699699402, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,171", - "created": 1614535209.1717012, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 171.70119285583496, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17659.268856048584, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,171", - "created": 1614535209.171894, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 171.89407348632812, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17659.461736679077, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,172", - "created": 1614535209.1720479, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 172.04785346984863, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17659.615516662598, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,172", - "created": 1614535209.1723363, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 172.33633995056152, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17659.90400314331, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,173", - "created": 1614535209.1734886, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 173.48861694335938, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17661.05628013611, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,173", - "created": 1614535209.1738245, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 173.82454872131348, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17661.392211914062, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,173", - "created": 1614535209.173995, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 173.9950180053711, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17661.56268119812, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:09,174", - "created": 1614535209.1742594, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 174.25942420959473, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17661.827087402344, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,174", - "created": 1614535209.1746755, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 174.67546463012695, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17662.243127822876, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:09,174", - "created": 1614535209.174872, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 174.87192153930664, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17662.439584732056, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,175", - "created": 1614535209.175137, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 175.13704299926758, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17662.704706192017, - "stack_info": null, - "thread": 140379093448448, - "threadName": "Thread-31" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,175", - "created": 1614535209.1759658, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 175.9657859802246, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17663.533449172974, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,184", - "created": 1614535209.1844199, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 184.4198703765869, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17671.987533569336, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,184", - "created": 1614535209.1847284, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 184.72838401794434, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17672.296047210693, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,184", - "created": 1614535209.1849024, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 184.90242958068848, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17672.470092773438, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,185", - "created": 1614535209.1851015, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 185.10150909423828, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17672.669172286987, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,185", - "created": 1614535209.1852756, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 185.27555465698242, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17672.84321784973, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,185", - "created": 1614535209.1854975, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 185.49752235412598, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17673.065185546875, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,185", - "created": 1614535209.1856387, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 185.6386661529541, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17673.206329345703, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,185", - "created": 1614535209.1858897, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 185.88972091674805, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17673.457384109497, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,186", - "created": 1614535209.1860366, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 186.0365867614746, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17673.604249954224, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,186", - "created": 1614535209.1862345, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 186.2344741821289, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17673.802137374878, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,186", - "created": 1614535209.1863863, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 186.3863468170166, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17673.954010009766, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,186", - "created": 1614535209.1866703, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 186.67030334472656, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17674.237966537476, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,187", - "created": 1614535209.1878245, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 187.82448768615723, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17675.392150878906, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,188", - "created": 1614535209.188153, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 188.15302848815918, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17675.72069168091, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,188", - "created": 1614535209.1883636, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 188.36355209350586, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17675.931215286255, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:09,188", - "created": 1614535209.1886199, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 188.61985206604004, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17676.18751525879, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,189", - "created": 1614535209.1890128, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 189.0127658843994, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17676.58042907715, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:09,189", - "created": 1614535209.1892045, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 189.20445442199707, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17676.772117614746, - "stack_info": null, - "thread": 140379085055744, - "threadName": "Thread-32" - } - ], - "msecs": 504.5204162597656, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17992.088079452515, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.31531596183776855 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,505", - "created": 1614535209.5056207, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,505", - "created": 1614535209.5051847, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): True ()", - "module": "test", - "msecs": 505.1846504211426, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17992.75231361389, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,505", - "created": 1614535209.5054083, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = True ()", - "module": "test", - "msecs": 505.40828704833984, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17992.97595024109, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 505.62071800231934, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17993.18838119507, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0002124309539794922 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,506", - "created": 1614535209.506277, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,505", - "created": 1614535209.5059545, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): True ()", - "module": "test", - "msecs": 505.9545040130615, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17993.52216720581, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,506", - "created": 1614535209.5061216, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = True ()", - "module": "test", - "msecs": 506.1216354370117, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17993.68929862976, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 506.27708435058594, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17993.844747543335, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015544891357421875 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:09,507", - "created": 1614535209.5071871, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "is_connected", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 43, - "message": "Disconnecting Server and Client", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,506", - "created": 1614535209.5065207, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 506.52074813842773, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17994.088411331177, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,506", - "created": 1614535209.5067105, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 506.7105293273926, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17994.27819252014, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,506", - "created": 1614535209.5068715, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 506.87146186828613, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17994.439125061035, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,507", - "created": 1614535209.5070364, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 507.0364475250244, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17994.604110717773, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 507.1871280670166, - "msg": "Disconnecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17994.754791259766, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001506805419921875 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,507", - "created": 1614535209.5077655, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,507", - "created": 1614535209.5074575, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): False ()", - "module": "test", - "msecs": 507.4574947357178, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17995.025157928467, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,507", - "created": 1614535209.5076168, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = False ()", - "module": "test", - "msecs": 507.6167583465576, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17995.184421539307, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 507.765531539917, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17995.333194732666, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.000148773193359375 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,508", - "created": 1614535209.5083187, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,508", - "created": 1614535209.5080197, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): False ()", - "module": "test", - "msecs": 508.01968574523926, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17995.58734893799, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,508", - "created": 1614535209.508173, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = False ()", - "module": "test", - "msecs": 508.17298889160156, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17995.74065208435, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 508.3186626434326, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17995.88632583618, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001456737518310547 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.35935378074645996, - "time_finished": "2021-02-28 19:00:09,508", - "time_start": "2021-02-28 19:00:09,148" - }, - "_gvJ1oE4gEeupHeIYRnC0qw": { - "args": null, - "asctime": "2021-02-28 19:00:09,508", - "created": 1614535209.5088918, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 55, - "message": "_gvJ1oE4gEeupHeIYRnC0qw", - "module": "__init__", - "moduleLogger": [], - "msecs": 508.8918209075928, - "msg": "_gvJ1oE4gEeupHeIYRnC0qw", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17996.45948410034, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 19:00:09,519", - "created": 1614535209.5199757, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,510", - "created": 1614535209.5101242, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 510.12420654296875, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17997.691869735718, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,511", - "created": 1614535209.5117693, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 511.76929473876953, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17999.33695793152, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,512", - "created": 1614535209.512077, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 512.0770931243896, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 17999.64475631714, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,512", - "created": 1614535209.5124645, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 512.4645233154297, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18000.03218650818, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:09,512", - "created": 1614535209.5126796, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 512.6795768737793, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18000.24724006653, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:09,512", - "created": 1614535209.5129347, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 512.934684753418, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18000.502347946167, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:09,513", - "created": 1614535209.5131366, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 513.136625289917, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18000.704288482666, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:09,513", - "created": 1614535209.5133088, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 513.3087635040283, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18000.876426696777, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:09,513", - "created": 1614535209.5134685, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 513.4685039520264, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18001.036167144775, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:09,513", - "created": 1614535209.5136483, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 513.648271560669, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18001.215934753418, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:09,513", - "created": 1614535209.5138772, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 513.8771533966064, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18001.444816589355, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:09,514", - "created": 1614535209.5140722, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 514.0721797943115, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18001.63984298706, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:09,514", - "created": 1614535209.5142484, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 514.2483711242676, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18001.816034317017, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,514", - "created": 1614535209.5144017, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 514.4016742706299, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18001.96933746338, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:09,514", - "created": 1614535209.5145752, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 514.5752429962158, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18002.142906188965, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:09,514", - "created": 1614535209.514782, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 514.7819519042969, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18002.349615097046, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:09,514", - "created": 1614535209.5149453, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 514.9452686309814, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18002.51293182373, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:09,515", - "created": 1614535209.5151145, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 515.1145458221436, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18002.682209014893, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:09,515", - "created": 1614535209.5152826, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 515.2826309204102, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18002.85029411316, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:09,515", - "created": 1614535209.5154545, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 515.4545307159424, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18003.02219390869, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:09,515", - "created": 1614535209.5156138, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 515.6137943267822, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18003.18145751953, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:09,515", - "created": 1614535209.515765, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 515.7649517059326, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18003.33261489868, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,515", - "created": 1614535209.5159347, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 515.9347057342529, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18003.502368927002, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,516", - "created": 1614535209.5162544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 516.2544250488281, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18003.822088241577, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 19:00:09,516", - "created": 1614535209.5164473, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 516.4473056793213, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18004.01496887207, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 19:00:09,516", - "created": 1614535209.516674, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 516.6740417480469, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18004.241704940796, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 19:00:09,516", - "created": 1614535209.5168433, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 516.843318939209, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18004.410982131958, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 19:00:09,517", - "created": 1614535209.5170126, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 517.0125961303711, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18004.58025932312, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 19:00:09,517", - "created": 1614535209.5171685, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 517.1685218811035, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18004.736185073853, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 19:00:09,517", - "created": 1614535209.5173347, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 517.3346996307373, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18004.902362823486, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 19:00:09,517", - "created": 1614535209.517508, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 517.5080299377441, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18005.075693130493, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 19:00:09,517", - "created": 1614535209.517706, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 517.7059173583984, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18005.273580551147, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 19:00:09,517", - "created": 1614535209.517883, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 517.8830623626709, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18005.45072555542, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,518", - "created": 1614535209.5180588, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 518.0587768554688, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18005.626440048218, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 19:00:09,518", - "created": 1614535209.5182076, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 518.2075500488281, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18005.775213241577, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 19:00:09,518", - "created": 1614535209.5186121, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 518.6121463775635, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18006.179809570312, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 19:00:09,518", - "created": 1614535209.5188527, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 518.852710723877, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18006.420373916626, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 19:00:09,519", - "created": 1614535209.5190418, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 519.0417766571045, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18006.609439849854, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 19:00:09,519", - "created": 1614535209.5192156, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 519.2155838012695, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18006.78324699402, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 19:00:09,519", - "created": 1614535209.5193942, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 519.3941593170166, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18006.961822509766, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 19:00:09,519", - "created": 1614535209.5195436, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 519.5436477661133, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18007.111310958862, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 19:00:09,519", - "created": 1614535209.5196931, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 519.69313621521, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18007.26079940796, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,519", - "created": 1614535209.5198357, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 519.8357105255127, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18007.40337371826, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 519.9756622314453, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18007.543325424194, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001399517059326172 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:09,865", - "created": 1614535209.8653002, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,520", - "created": 1614535209.5202725, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 520.2724933624268, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18007.840156555176, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,520", - "created": 1614535209.5204227, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 520.4226970672607, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18007.99036026001, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,520", - "created": 1614535209.5205767, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 520.5767154693604, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18008.14437866211, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,520", - "created": 1614535209.5208228, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 520.8227634429932, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18008.390426635742, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,521", - "created": 1614535209.5214, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 521.399974822998, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18008.967638015747, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,521", - "created": 1614535209.5215738, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 521.5737819671631, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18009.141445159912, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,521", - "created": 1614535209.521764, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 521.7640399932861, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18009.331703186035, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,522", - "created": 1614535209.5226939, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 522.6938724517822, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18010.26153564453, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,531", - "created": 1614535209.5313365, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 531.3365459442139, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18018.904209136963, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,531", - "created": 1614535209.531768, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 531.7680835723877, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18019.335746765137, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,532", - "created": 1614535209.532039, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 532.0389270782471, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18019.606590270996, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,532", - "created": 1614535209.532364, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 532.3638916015625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18019.93155479431, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,532", - "created": 1614535209.5325818, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 532.5818061828613, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18020.14946937561, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,532", - "created": 1614535209.532892, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 532.8919887542725, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18020.45965194702, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,533", - "created": 1614535209.5330982, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 533.0982208251953, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18020.665884017944, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,533", - "created": 1614535209.5333745, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 533.374547958374, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18020.942211151123, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,533", - "created": 1614535209.5337203, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 533.7202548980713, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18021.28791809082, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,534", - "created": 1614535209.5340257, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 534.0256690979004, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18021.59333229065, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,534", - "created": 1614535209.5342407, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 534.24072265625, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18021.808385849, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,534", - "created": 1614535209.5346437, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 534.6436500549316, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18022.21131324768, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,535", - "created": 1614535209.5357363, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 535.7363224029541, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18023.303985595703, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,536", - "created": 1614535209.5360036, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 536.003589630127, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18023.571252822876, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,536", - "created": 1614535209.5361748, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 536.1747741699219, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18023.74243736267, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:09,536", - "created": 1614535209.5364192, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 536.419153213501, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18023.98681640625, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,536", - "created": 1614535209.5368197, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 536.8196964263916, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18024.38735961914, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:09,537", - "created": 1614535209.5370526, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 537.0526313781738, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18024.620294570923, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,537", - "created": 1614535209.5373702, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 537.3702049255371, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18024.937868118286, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,538", - "created": 1614535209.5387332, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 538.7332439422607, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18026.30090713501, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,547", - "created": 1614535209.547283, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 547.2829341888428, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18034.85059738159, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,547", - "created": 1614535209.5475953, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 547.5952625274658, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18035.162925720215, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,547", - "created": 1614535209.5477684, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 547.7683544158936, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18035.336017608643, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,547", - "created": 1614535209.5479934, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 547.9934215545654, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18035.561084747314, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,548", - "created": 1614535209.5481377, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 548.1376647949219, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18035.70532798767, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,548", - "created": 1614535209.548346, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 548.3460426330566, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18035.913705825806, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,548", - "created": 1614535209.5484898, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 548.4898090362549, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18036.057472229004, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,548", - "created": 1614535209.5486724, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 548.6724376678467, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18036.240100860596, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,548", - "created": 1614535209.5488567, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 548.8567352294922, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18036.42439842224, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,549", - "created": 1614535209.5490432, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 549.0431785583496, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18036.6108417511, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,549", - "created": 1614535209.5491745, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 549.1745471954346, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18036.742210388184, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,549", - "created": 1614535209.5494282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 549.4282245635986, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18036.995887756348, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,550", - "created": 1614535209.5505078, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 550.5077838897705, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18038.07544708252, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,550", - "created": 1614535209.5508175, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 550.8174896240234, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18038.385152816772, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,550", - "created": 1614535209.550998, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 550.9979724884033, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18038.565635681152, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:09,551", - "created": 1614535209.5513544, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 551.3544082641602, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18038.92207145691, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,551", - "created": 1614535209.5517538, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 551.7537593841553, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18039.321422576904, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:09,551", - "created": 1614535209.5519447, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 551.9447326660156, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18039.512395858765, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - } - ], - "msecs": 865.300178527832, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18352.86784172058, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.3133554458618164 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,866", - "created": 1614535209.8664927, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,866", - "created": 1614535209.8660347, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): True ()", - "module": "test", - "msecs": 866.034746170044, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18353.602409362793, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,866", - "created": 1614535209.8662844, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = True ()", - "module": "test", - "msecs": 866.2843704223633, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18353.852033615112, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 866.492748260498, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18354.060411453247, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00020837783813476562 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,867", - "created": 1614535209.8672056, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,866", - "created": 1614535209.8668454, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): True ()", - "module": "test", - "msecs": 866.8453693389893, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18354.41303253174, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:09,867", - "created": 1614535209.867033, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = True ()", - "module": "test", - "msecs": 867.0330047607422, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18354.60066795349, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 867.2056198120117, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18354.77328300476, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00017261505126953125 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:09,868", - "created": 1614535209.8682635, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "reconnect", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 55, - "message": "Disconnecting Server and Client", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,867", - "created": 1614535209.867475, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-client: Connection Lost...", - "module": "__init__", - "msecs": 867.4750328063965, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18355.042695999146, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,867", - "created": 1614535209.8676918, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 867.6917552947998, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18355.25941848755, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,867", - "created": 1614535209.8679056, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "disconnect", - "levelname": "INFO", - "levelno": 20, - "lineno": 296, - "message": "comm-server: Connection Lost...", - "module": "__init__", - "msecs": 867.9056167602539, - "msg": "%s Connection Lost...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18355.473279953003, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,868", - "created": 1614535209.8680754, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 868.0753707885742, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18355.643033981323, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 868.2634830474854, - "msg": "Disconnecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18355.831146240234, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001881122589111328 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,868", - "created": 1614535209.868909, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,868", - "created": 1614535209.8685615, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): False ()", - "module": "test", - "msecs": 868.5615062713623, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18356.12916946411, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,868", - "created": 1614535209.8687398, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = False ()", - "module": "test", - "msecs": 868.7398433685303, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18356.30750656128, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 868.9088821411133, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18356.476545333862, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001690387725830078 - }, - { - "args": [ - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,869", - "created": 1614535209.8695397, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content False and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,869", - "created": 1614535209.869181, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): False ()", - "module": "test", - "msecs": 869.1809177398682, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18356.748580932617, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "False", - "" - ], - "asctime": "2021-02-28 19:00:09,869", - "created": 1614535209.8693697, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = False ()", - "module": "test", - "msecs": 869.3697452545166, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18356.937408447266, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 869.539737701416, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18357.107400894165, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00016999244689941406 - }, - { - "args": [], - "asctime": "2021-02-28 19:00:10,216", - "created": 1614535210.2167418, - "exc_info": null, - "exc_text": null, - "filename": "test_add_methods.py", - "funcName": "reconnect", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 61, - "message": "Connecting Server and Client", - "module": "test_add_methods", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,869", - "created": 1614535209.8698514, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 869.8513507843018, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18357.41901397705, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 19:00:09,870", - "created": 1614535209.8700395, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 870.0394630432129, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18357.607126235962, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:09,870", - "created": 1614535209.8702202, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 870.2201843261719, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18357.78784751892, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,870", - "created": 1614535209.8705614, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 870.5613613128662, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18358.129024505615, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,871", - "created": 1614535209.8713164, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 871.3164329528809, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18358.88409614563, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 19:00:09,871", - "created": 1614535209.8715382, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 871.5381622314453, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18359.105825424194, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,872", - "created": 1614535209.872518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 872.5180625915527, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18360.0857257843, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 19:00:09,873", - "created": 1614535209.8731322, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 873.1322288513184, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18360.699892044067, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,881", - "created": 1614535209.8811886, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 881.1886310577393, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18368.75629425049, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,881", - "created": 1614535209.8815506, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 881.5505504608154, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18369.118213653564, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,881", - "created": 1614535209.88179, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 881.7899227142334, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18369.357585906982, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,882", - "created": 1614535209.882023, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 882.0230960845947, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18369.590759277344, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,882", - "created": 1614535209.8821821, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 882.1821212768555, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18369.749784469604, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,882", - "created": 1614535209.8824546, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 882.4546337127686, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18370.022296905518, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,882", - "created": 1614535209.8826063, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 882.6062679290771, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18370.173931121826, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,882", - "created": 1614535209.882838, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 882.8380107879639, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18370.405673980713, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,882", - "created": 1614535209.8829885, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 882.988452911377, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18370.556116104126, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,883", - "created": 1614535209.8831866, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 883.1865787506104, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18370.75424194336, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,883", - "created": 1614535209.8833332, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 883.3332061767578, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18370.900869369507, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,883", - "created": 1614535209.883625, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 883.6250305175781, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18371.192693710327, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,884", - "created": 1614535209.8847563, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 884.756326675415, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18372.323989868164, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,885", - "created": 1614535209.8850667, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 885.0667476654053, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18372.634410858154, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,885", - "created": 1614535209.8852646, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 885.2646350860596, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18372.83229827881, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:09,885", - "created": 1614535209.885542, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 885.5419158935547, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18373.109579086304, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,886", - "created": 1614535209.8860111, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 886.0111236572266, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18373.578786849976, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 19:00:09,886", - "created": 1614535209.8862326, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 886.2326145172119, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18373.80027770996, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,886", - "created": 1614535209.886512, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 886.512041091919, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18374.079704284668, - "stack_info": null, - "thread": 140379076663040, - "threadName": "Thread-33" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,888", - "created": 1614535209.8881724, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 888.1723880767822, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18375.74005126953, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 19:00:09,896", - "created": 1614535209.8966846, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 896.6846466064453, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18384.252309799194, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,897", - "created": 1614535209.897036, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 897.036075592041, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18384.60373878479, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:09,897", - "created": 1614535209.897238, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 897.23801612854, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18384.80567932129, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,897", - "created": 1614535209.8974745, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 897.4745273590088, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18385.042190551758, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,897", - "created": 1614535209.8976393, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 897.639274597168, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18385.206937789917, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,897", - "created": 1614535209.897931, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 897.9310989379883, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18385.498762130737, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,898", - "created": 1614535209.8980913, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 898.0913162231445, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18385.658979415894, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,898", - "created": 1614535209.8983345, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 898.3345031738281, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18385.902166366577, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,898", - "created": 1614535209.8984935, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 898.4935283660889, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18386.061191558838, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,898", - "created": 1614535209.898722, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 898.7219333648682, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18386.289596557617, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:09,898", - "created": 1614535209.8988762, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 898.8761901855469, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18386.443853378296, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,899", - "created": 1614535209.8991864, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 899.186372756958, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18386.754035949707, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 19:00:09,900", - "created": 1614535209.9003189, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 900.3188610076904, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18387.88652420044, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:09,900", - "created": 1614535209.9006898, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 900.6898403167725, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18388.25750350952, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:09,901", - "created": 1614535209.9010122, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 901.0121822357178, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18388.579845428467, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:09,901", - "created": 1614535209.901425, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 901.4248847961426, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18388.99254798889, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 19:00:09,902", - "created": 1614535209.9021919, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 902.1918773651123, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18389.75954055786, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 19:00:09,902", - "created": 1614535209.9025974, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 902.5974273681641, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18390.165090560913, - "stack_info": null, - "thread": 140378590148352, - "threadName": "Thread-34" - } - ], - "msecs": 216.74180030822754, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18704.309463500977, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.3141443729400635 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:10,217", - "created": 1614535210.2178214, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Client Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:10,217", - "created": 1614535210.2173724, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Client Communication instance connection status): True ()", - "module": "test", - "msecs": 217.37241744995117, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18704.9400806427, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Client Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:10,217", - "created": 1614535210.2175915, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Client Communication instance connection status): result = True ()", - "module": "test", - "msecs": 217.5915241241455, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18705.159187316895, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 217.8213596343994, - "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18705.38902282715, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00022983551025390625 - }, - { - "args": [ - "True", - "" - ], - "asctime": "2021-02-28 19:00:10,218", - "created": 1614535210.21847, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Server Communication instance connection status is correct (Content True and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:10,218", - "created": 1614535210.2181435, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Server Communication instance connection status): True ()", - "module": "test", - "msecs": 218.14346313476562, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18705.711126327515, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Server Communication instance connection status", - "True", - "" - ], - "asctime": "2021-02-28 19:00:10,218", - "created": 1614535210.218312, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Server Communication instance connection status): result = True ()", - "module": "test", - "msecs": 218.31202507019043, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18705.87968826294, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 218.47009658813477, - "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 18706.037759780884, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00015807151794433594 - } - ], - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.709578275680542, - "time_finished": "2021-02-28 19:00:10,218", - "time_start": "2021-02-28 19:00:09,508" - }, - "_j-npsE0MEeuiHtQbLi1mZg": { - "args": null, - "asctime": "2021-02-28 18:59:53,358", - "created": 1614535193.3580701, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "testrun", - "levelname": "INFO", - "levelno": 20, - "lineno": 35, - "message": "_j-npsE0MEeuiHtQbLi1mZg", - "module": "__init__", - "moduleLogger": [], - "msecs": 358.07013511657715, - "msg": "_j-npsE0MEeuiHtQbLi1mZg", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1845.6377983093262, - "stack_info": null, - "testcaseLogger": [ - { - "args": [], - "asctime": "2021-02-28 18:59:53,367", - "created": 1614535193.367607, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 44, - "message": "Setting up communication", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:53,359", - "created": 1614535193.3596728, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 359.67278480529785, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1847.2404479980469, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:53,360", - "created": 1614535193.3607178, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 360.7177734375, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1848.285436630249, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:53,360", - "created": 1614535193.3609738, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 520, - "message": "comm-server: Waiting for incomming connection", - "module": "__init__", - "msecs": 360.9738349914551, - "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1848.541498184204, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:53,361", - "created": 1614535193.361315, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 361.3150119781494, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1848.8826751708984, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:53,361", - "created": 1614535193.361505, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 361.50503158569336, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1849.0726947784424, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:53,361", - "created": 1614535193.3617544, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 361.7544174194336, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1849.3220806121826, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:53,361", - "created": 1614535193.3619208, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 361.9208335876465, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1849.4884967803955, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:53,362", - "created": 1614535193.3620675, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 362.06746101379395, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1849.635124206543, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:53,362", - "created": 1614535193.3622072, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 362.20717430114746, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1849.7748374938965, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:53,362", - "created": 1614535193.362377, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 362.3769283294678, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1849.9445915222168, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:53,362", - "created": 1614535193.362538, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 362.53809928894043, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1850.1057624816895, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:53,362", - "created": 1614535193.3626904, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 362.6904487609863, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1850.2581119537354, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:53,362", - "created": 1614535193.3628407, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 362.8406524658203, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1850.4083156585693, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:53,362", - "created": 1614535193.3629735, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 362.9734516143799, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1850.541114807129, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:53,363", - "created": 1614535193.3631241, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 363.12413215637207, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1850.691795349121, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:53,363", - "created": 1614535193.3632865, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 363.28649520874023, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1850.8541584014893, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:53,363", - "created": 1614535193.3634427, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 363.44265937805176, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1851.0103225708008, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:53,363", - "created": 1614535193.363595, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 363.59500885009766, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1851.1626720428467, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:53,363", - "created": 1614535193.3637447, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 363.74473571777344, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1851.3123989105225, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:53,363", - "created": 1614535193.3638902, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 363.8901710510254, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1851.4578342437744, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:53,364", - "created": 1614535193.3640275, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 364.0275001525879, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1851.595163345337, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:53,364", - "created": 1614535193.3641741, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-server: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 364.17412757873535, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1851.7417907714844, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:53,364", - "created": 1614535193.3643131, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-server: Initialisation finished.", - "module": "__init__", - "msecs": 364.31312561035156, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1851.8807888031006, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:53,364", - "created": 1614535193.3646002, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 364.60018157958984, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1852.1678447723389, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "authentification request", - "authentification response" - ], - "asctime": "2021-02-28 18:59:53,364", - "created": 1614535193.364758, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", - "module": "__init__", - "msecs": 364.7580146789551, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1852.325677871704, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: seed" - ], - "asctime": "2021-02-28 18:59:53,364", - "created": 1614535193.364959, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 364.9590015411377, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1852.5266647338867, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: seed" - ], - "asctime": "2021-02-28 18:59:53,365", - "created": 1614535193.365111, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", - "module": "__init__", - "msecs": 365.1111125946045, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1852.6787757873535, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification request, data_id: key" - ], - "asctime": "2021-02-28 18:59:53,365", - "created": 1614535193.3652518, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 365.2517795562744, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1852.8194427490234, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: authentification response, data_id: key" - ], - "asctime": "2021-02-28 18:59:53,365", - "created": 1614535193.365391, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", - "module": "__init__", - "msecs": 365.3910160064697, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1852.9586791992188, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_seed__'", - "0", - "0" - ], - "asctime": "2021-02-28 18:59:53,365", - "created": 1614535193.3655546, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", - "module": "__init__", - "msecs": 365.5545711517334, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1853.1222343444824, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_create_key__'", - "1", - "0" - ], - "asctime": "2021-02-28 18:59:53,365", - "created": 1614535193.3657277, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", - "module": "__init__", - "msecs": 365.72766304016113, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1853.2953262329102, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_check_key__'", - "0", - "1" - ], - "asctime": "2021-02-28 18:59:53,365", - "created": 1614535193.3658824, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", - "module": "__init__", - "msecs": 365.88239669799805, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1853.450059890747, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__authentificate_process_feedback__'", - "1", - "1" - ], - "asctime": "2021-02-28 18:59:53,366", - "created": 1614535193.3660297, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", - "module": "__init__", - "msecs": 366.0297393798828, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1853.5974025726318, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:53,366", - "created": 1614535193.3661697, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__authentification_state_reset__", - "levelname": "INFO", - "levelno": 20, - "lineno": 385, - "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "module": "__init__", - "msecs": 366.16969108581543, - "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1853.7373542785645, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "channel name request", - "channel name response" - ], - "asctime": "2021-02-28 18:59:53,366", - "created": 1614535193.3663204, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", - "module": "__init__", - "msecs": 366.3203716278076, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1853.8880348205566, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name request, data_id: name" - ], - "asctime": "2021-02-28 18:59:53,366", - "created": 1614535193.3664808, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 366.48082733154297, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1854.048490524292, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "service: channel name response, data_id: name" - ], - "asctime": "2021-02-28 18:59:53,366", - "created": 1614535193.366623, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_msg_to_auth_whitelist_", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 571, - "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", - "module": "__init__", - "msecs": 366.6229248046875, - "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1854.1905879974365, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_request__'", - "8", - "0" - ], - "asctime": "2021-02-28 18:59:53,366", - "created": 1614535193.366769, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", - "module": "__init__", - "msecs": 366.76907539367676, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1854.3367385864258, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "'__channel_name_response__'", - "9", - "0" - ], - "asctime": "2021-02-28 18:59:53,366", - "created": 1614535193.3669167, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", - "module": "__init__", - "msecs": 366.9166564941406, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1854.4843196868896, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "read data request", - "read data response" - ], - "asctime": "2021-02-28 18:59:53,367", - "created": 1614535193.3670588, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=read data request and Response=read data response", - "module": "__init__", - "msecs": 367.05875396728516, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1854.6264171600342, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "write data request", - "write data response" - ], - "asctime": "2021-02-28 18:59:53,367", - "created": 1614535193.3672068, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=write data request and Response=write data response", - "module": "__init__", - "msecs": 367.2068119049072, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1854.7744750976562, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "execute request", - "execute response" - ], - "asctime": "2021-02-28 18:59:53,367", - "created": 1614535193.367341, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "add_service", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 594, - "message": "prot-client: Adding Service with Request=execute request and Response=execute response", - "module": "__init__", - "msecs": 367.3410415649414, - "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1854.9087047576904, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:53,367", - "created": 1614535193.3674774, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__init__", - "levelname": "INFO", - "levelno": 20, - "lineno": 337, - "message": "prot-client: Initialisation finished.", - "module": "__init__", - "msecs": 367.4774169921875, - "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1855.0450801849365, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 367.60711669921875, - "msg": "Setting up communication", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1855.1747798919678, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.00012969970703125 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:53,712", - "created": 1614535193.7127323, - "exc_info": null, - "exc_text": null, - "filename": "test_helpers.py", - "funcName": "set_up_socket_protocol", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 47, - "message": "Connecting Server and Client", - "module": "test_helpers", - "moduleLogger": [ - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:53,367", - "created": 1614535193.3679104, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-client: Connection established...", - "module": "__init__", - "msecs": 367.91038513183594, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1855.478048324585, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:" - ], - "asctime": "2021-02-28 18:59:53,368", - "created": 1614535193.3680663, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 368.06631088256836, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1855.6339740753174, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 18:59:53,368", - "created": 1614535193.3682053, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-client: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 368.20530891418457, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1855.7729721069336, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-client:", - "TX ->", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:53,368", - "created": 1614535193.3684413, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 368.4413433074951, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1856.0090065002441, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:53,368", - "created": 1614535193.3689976, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__connect__", - "levelname": "INFO", - "levelno": 20, - "lineno": 268, - "message": "comm-server: Connection established...", - "module": "__init__", - "msecs": 368.99757385253906, - "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1856.565237045288, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-server:" - ], - "asctime": "2021-02-28 18:59:53,369", - "created": 1614535193.3691711, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 411, - "message": "comm-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 369.171142578125, - "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1856.738805770874, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "prot-server:" - ], - "asctime": "2021-02-28 18:59:53,369", - "created": 1614535193.3693194, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__clean_receive_buffer__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 439, - "message": "prot-server: Cleaning up receive-buffer", - "module": "__init__", - "msecs": 369.3194389343262, - "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1856.8871021270752, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:53,369", - "created": 1614535193.369782, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 369.7819709777832, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1857.3496341705322, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:53,378", - "created": 1614535193.3782275, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 378.22747230529785, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1865.7951354980469, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,378", - "created": 1614535193.3785667, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 378.5667419433594, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1866.1344051361084, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,378", - "created": 1614535193.3787503, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 378.7503242492676, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1866.3179874420166, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,378", - "created": 1614535193.3789551, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 378.9551258087158, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1866.5227890014648, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,379", - "created": 1614535193.3790991, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 379.09913063049316, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1866.6667938232422, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,379", - "created": 1614535193.3793237, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 379.32372093200684, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1866.8913841247559, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,379", - "created": 1614535193.3794594, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 379.4593811035156, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1867.0270442962646, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,379", - "created": 1614535193.3796544, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 379.6544075012207, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1867.2220706939697, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,379", - "created": 1614535193.3797913, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 379.791259765625, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1867.358922958374, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,379", - "created": 1614535193.3799794, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 379.97937202453613, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1867.5470352172852, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,380", - "created": 1614535193.3801181, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 380.11813163757324, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1867.6857948303223, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-client:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:53,380", - "created": 1614535193.3803988, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 380.3987503051758, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1867.9664134979248, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(6): 53 5e 67 0b 3a 3e" - ], - "asctime": "2021-02-28 18:59:53,381", - "created": 1614535193.3815453, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", - "module": "__init__", - "msecs": 381.5453052520752, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1869.1129684448242, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,381", - "created": 1614535193.381917, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 381.91699981689453, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1869.4846630096436, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,382", - "created": 1614535193.3821456, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 382.14564323425293, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1869.713306427002, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 18:59:53,382", - "created": 1614535193.3824208, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 382.42077827453613, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1869.9884414672852, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: channel name request, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:53,382", - "created": 1614535193.3828375, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 382.83753395080566, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1870.4051971435547, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "__channel_name_request__" - ], - "asctime": "2021-02-28 18:59:53,383", - "created": 1614535193.383044, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __channel_name_request__ to process received data", - "module": "__init__", - "msecs": 383.0440044403076, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1870.6116676330566, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:53,383", - "created": 1614535193.3833249, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 383.32486152648926, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1870.8925247192383, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:53,384", - "created": 1614535193.3841453, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 384.14525985717773, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1871.7129230499268, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" - ], - "asctime": "2021-02-28 18:59:53,392", - "created": 1614535193.3925304, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", - "module": "__init__", - "msecs": 392.5304412841797, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1880.0981044769287, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,392", - "created": 1614535193.3928514, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 392.8513526916504, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1880.4190158843994, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,393", - "created": 1614535193.393032, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 393.0320739746094, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1880.5997371673584, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,393", - "created": 1614535193.3932416, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 393.24164390563965, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1880.8093070983887, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,393", - "created": 1614535193.3934023, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 393.4023380279541, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1880.9700012207031, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,393", - "created": 1614535193.39363, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 393.6300277709961, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1881.1976909637451, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,393", - "created": 1614535193.3938622, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 393.862247467041, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1881.42991065979, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,394", - "created": 1614535193.394056, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 394.0560817718506, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1881.6237449645996, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,394", - "created": 1614535193.3942, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 394.20008659362793, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1881.767749786377, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,394", - "created": 1614535193.3944166, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 394.41657066345215, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1881.9842338562012, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,394", - "created": 1614535193.3945642, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 394.564151763916, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1882.131814956665, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-server:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:53,394", - "created": 1614535193.394838, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 394.8380947113037, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1882.4057579040527, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "comm-client:", - "(6): 30 59 be 2f 3a 3e" - ], - "asctime": "2021-02-28 18:59:53,395", - "created": 1614535193.3959777, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", - "module": "__init__", - "msecs": 395.9777355194092, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1883.5453987121582, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,396", - "created": 1614535193.3963373, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 396.33727073669434, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1883.9049339294434, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,396", - "created": 1614535193.3965254, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 396.52538299560547, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1884.0930461883545, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 18:59:53,396", - "created": 1614535193.3967817, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 396.78168296813965, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1884.3493461608887, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: channel name response, data_id: name", - "status: okay", - "None" - ], - "asctime": "2021-02-28 18:59:53,397", - "created": 1614535193.3971963, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", - "module": "__init__", - "msecs": 397.19629287719727, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1884.7639560699463, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "prot-client:", - "__channel_name_response__" - ], - "asctime": "2021-02-28 18:59:53,397", - "created": 1614535193.3974166, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 504, - "message": "prot-client: Executing callback __channel_name_response__ to process received data", - "module": "__init__", - "msecs": 397.4165916442871, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 1884.9842548370361, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - } - ], - "msecs": 712.7323150634766, - "msg": "Connecting Server and Client", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2200.2999782562256, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.31531572341918945 - }, - { - "args": [], - "asctime": "2021-02-28 18:59:53,713", - "created": 1614535193.713376, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,225", + "created": 1742744818.2255702, "exc_text": null, "filename": "test_communication.py", "funcName": "manual_authentification", @@ -172000,23 +9631,22 @@ "message": "No secret set", "module": "test_communication", "moduleLogger": [], - "msecs": 713.3760452270508, + "msecs": 225.0, "msg": "No secret set", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2200.9437084198, + "relativeCreated": 2129.2569637298584, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-02-28 18:59:53,713", - "created": 1614535193.7137344, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,225", + "created": 1742744818.22592, "exc_text": null, "filename": "test_communication.py", "funcName": "manual_authentification", @@ -172026,15 +9656,15 @@ "message": "Performing Authentification", "module": "test_communication", "moduleLogger": [], - "msecs": 713.7343883514404, + "msecs": 225.0, "msg": "Performing Authentification", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2201.3020515441895, + "relativeCreated": 2129.6067237854004, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -172043,15 +9673,14 @@ "False", "" ], - "asctime": "2021-02-28 18:59:53,714", - "created": 1614535193.7144141, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,226", + "created": 1742744818.2267292, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Return Value of authentification method is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -172061,9 +9690,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:53,714", - "created": 1614535193.7140465, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,226", + "created": 1742744818.226275, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -172072,72 +9700,71 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 714.0464782714844, + "msecs": 226.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2201.6141414642334, + "relativeCreated": 2129.9617290496826, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Return Value of authentification method", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:53,714", - "created": 1614535193.7142377, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,226", + "created": 1742744818.226488, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 714.2376899719238, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 226.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2201.805353164673, + "relativeCreated": 2130.1748752593994, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 714.414119720459, + "msecs": 226.0, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2201.981782913208, + "relativeCreated": 2130.415916442871, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00017642974853515625 + "time_consumption": 0.0002410411834716797 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 18:59:53,715", - "created": 1614535193.7150042, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,227", + "created": 1742744818.2274234, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of server is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -172147,9 +9774,8 @@ "True", "" ], - "asctime": "2021-02-28 18:59:53,714", - "created": 1614535193.7146845, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,227", + "created": 1742744818.2270415, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -172158,72 +9784,71 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 714.6844863891602, + "msecs": 227.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2202.252149581909, + "relativeCreated": 2130.728244781494, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of server", + "=", "True", "" ], - "asctime": "2021-02-28 18:59:53,714", - "created": 1614535193.7148495, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,227", + "created": 1742744818.227233, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 714.8494720458984, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 227.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2202.4171352386475, + "relativeCreated": 2130.9196949005127, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 715.0042057037354, + "msecs": 227.0, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2202.5718688964844, + "relativeCreated": 2131.110191345215, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00015473365783691406 + "time_consumption": 0.00019049644470214844 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 18:59:53,715", - "created": 1614535193.7157013, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,228", + "created": 1742744818.228056, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of client is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -172233,9 +9858,8 @@ "True", "" ], - "asctime": "2021-02-28 18:59:53,715", - "created": 1614535193.715265, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,227", + "created": 1742744818.227742, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -172244,63 +9868,62 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 715.2650356292725, + "msecs": 227.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2202.8326988220215, + "relativeCreated": 2131.4287185668945, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of client", + "=", "True", "" ], - "asctime": "2021-02-28 18:59:53,715", - "created": 1614535193.7154496, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,227", + "created": 1742744818.2279046, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 715.4495716094971, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 227.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2203.017234802246, + "relativeCreated": 2131.591320037842, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 715.7013416290283, + "msecs": 228.0, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2203.2690048217773, + "relativeCreated": 2131.7427158355713, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00025177001953125 + "time_consumption": 0.0001513957977294922 }, { "args": [], - "asctime": "2021-02-28 18:59:53,715", - "created": 1614535193.7159584, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,228", + "created": 1742744818.2282825, "exc_text": null, "filename": "test_communication.py", "funcName": "manual_authentification", @@ -172310,15 +9933,15 @@ "message": "Different secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 715.9583568572998, + "msecs": 228.0, "msg": "Different secrets set", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2203.526020050049, + "relativeCreated": 2131.969213485718, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -172327,15 +9950,14 @@ "False", "" ], - "asctime": "2021-02-28 18:59:53,716", - "created": 1614535193.71655, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,228", + "created": 1742744818.228833, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of server is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -172345,9 +9967,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:53,716", - "created": 1614535193.7162087, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,228", + "created": 1742744818.2285216, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -172356,72 +9977,71 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 716.2086963653564, + "msecs": 228.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2203.7763595581055, + "relativeCreated": 2132.2083473205566, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of server", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:53,716", - "created": 1614535193.7163699, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,228", + "created": 1742744818.2286808, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 716.3698673248291, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 228.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2203.937530517578, + "relativeCreated": 2132.3676109313965, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 716.5501117706299, + "msecs": 228.0, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2204.117774963379, + "relativeCreated": 2132.5197219848633, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00018024444580078125 + "time_consumption": 0.00015211105346679688 }, { "args": [ "False", "" ], - "asctime": "2021-02-28 18:59:53,717", - "created": 1614535193.7171128, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,229", + "created": 1742744818.2293918, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of client is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -172431,9 +10051,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:53,716", - "created": 1614535193.716803, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,229", + "created": 1742744818.229081, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -172442,63 +10061,62 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 716.8030738830566, + "msecs": 229.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2204.3707370758057, + "relativeCreated": 2132.767677307129, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of client", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:53,716", - "created": 1614535193.7169623, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,229", + "created": 1742744818.2292395, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 716.9623374938965, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 229.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2204.5300006866455, + "relativeCreated": 2132.9262256622314, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 717.1127796173096, + "msecs": 229.0, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2204.6804428100586, + "relativeCreated": 2133.0785751342773, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00015044212341308594 + "time_consumption": 0.00015234947204589844 }, { "args": [], - "asctime": "2021-02-28 18:59:53,818", - "created": 1614535193.81852, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,330", + "created": 1742744818.3307223, "exc_text": null, "filename": "test_communication.py", "funcName": "manual_authentification", @@ -172516,26 +10134,25 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:53,717", - "created": 1614535193.7174544, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,229", + "created": 1742744818.2297783, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 717.4544334411621, + "msecs": 229.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2205.022096633911, + "relativeCreated": 2133.465051651001, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -172543,9 +10160,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:53,718", - "created": 1614535193.7182987, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,230", + "created": 1742744818.2306502, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -172554,25 +10170,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 718.2986736297607, + "msecs": 230.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2205.8663368225098, + "relativeCreated": 2134.3369483947754, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:53,726", - "created": 1614535193.7267945, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,239", + "created": 1742744818.2394123, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -172581,300 +10196,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 726.7944812774658, + "msecs": 239.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2214.362144470215, + "relativeCreated": 2143.099069595337, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,727", - "created": 1614535193.727135, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 727.1349430084229, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2214.702606201172, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,727", - "created": 1614535193.7273092, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 727.3092269897461, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2214.876890182495, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,727", - "created": 1614535193.7275279, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 727.5278568267822, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2215.0955200195312, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,727", - "created": 1614535193.7276704, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 727.670431137085, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2215.238094329834, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,727", - "created": 1614535193.7278743, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 727.8742790222168, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2215.441942214966, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,728", - "created": 1614535193.7280047, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 728.0046939849854, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2215.5723571777344, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,728", - "created": 1614535193.7281978, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 728.1978130340576, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2215.7654762268066, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,728", - "created": 1614535193.7283268, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 728.3267974853516, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2215.8944606781006, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,728", - "created": 1614535193.728499, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 728.4989356994629, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2216.066598892212, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,728", - "created": 1614535193.7286239, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 728.6238670349121, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2216.191530227661, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-02-28 18:59:53,728", - "created": 1614535193.728873, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,240", + "created": 1742744818.2401528, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -172883,25 +10222,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 728.8730144500732, + "msecs": 240.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2216.4406776428223, + "relativeCreated": 2143.8395977020264, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-02-28 18:59:53,729", - "created": 1614535193.7299006, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,241", + "created": 1742744818.241324, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -172910,98 +10248,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 729.900598526001, + "msecs": 241.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2217.46826171875, + "relativeCreated": 2145.0107097625732, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,730", - "created": 1614535193.7301672, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 730.1671504974365, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2217.7348136901855, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,730", - "created": 1614535193.7303421, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 730.3421497344971, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2217.909812927246, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 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 fd 82 a2 a9" - ], - "asctime": "2021-02-28 18:59:53,730", - "created": 1614535193.7305872, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 fd 82 a2 a9", - "module": "stp", - "msecs": 730.5872440338135, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2218.1549072265625, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -173011,54 +10267,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:53,730", - "created": 1614535193.7309766, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,241", + "created": 1742744818.2419994, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 730.9765815734863, + "msecs": 241.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2218.5442447662354, + "relativeCreated": 2145.686149597168, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-02-28 18:59:53,731", - "created": 1614535193.731168, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,242", + "created": 1742744818.242316, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 731.1680316925049, + "msecs": 242.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2218.735694885254, + "relativeCreated": 2146.002769470215, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -173066,548 +10320,184 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'5f0cd9c007043d1f6706919225d48bec8b2bb988c04238f0080253ef30e8e6e1'" + "'0110a97205e47154131da1a4f6026df6af13cce1f515b3c6dccffe91f0191b46'" ], - "asctime": "2021-02-28 18:59:53,731", - "created": 1614535193.7314587, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,242", + "created": 1742744818.2426484, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'5f0cd9c007043d1f6706919225d48bec8b2bb988c04238f0080253ef30e8e6e1'\"", + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'0110a97205e47154131da1a4f6026df6af13cce1f515b3c6dccffe91f0191b46'\"", "module": "__init__", - "msecs": 731.4586639404297, + "msecs": 242.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2219.0263271331787, + "relativeCreated": 2146.3351249694824, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 66 30 63" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 31 31 30" ], - "asctime": "2021-02-28 18:59:53,732", - "created": 1614535193.732444, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,243", + "created": 1742744818.243648, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 66 30 63", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 31 31 30", "module": "__init__", - "msecs": 732.4440479278564, + "msecs": 243.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2220.0117111206055, + "relativeCreated": 2147.3348140716553, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 66 30 63" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 31 31 30" ], - "asctime": "2021-02-28 18:59:53,740", - "created": 1614535193.740996, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,252", + "created": 1742744818.2522697, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 66 30 63", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 31 31 30", "module": "__init__", - "msecs": 740.9958839416504, + "msecs": 252.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2228.5635471343994, + "relativeCreated": 2155.956506729126, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,741", - "created": 1614535193.7413335, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 741.3334846496582, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2228.901147842407, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,741", - "created": 1614535193.741513, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 741.5130138397217, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2229.0806770324707, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,741", - "created": 1614535193.7417574, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 741.7573928833008, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2229.32505607605, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,741", - "created": 1614535193.7419145, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 741.9145107269287, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2229.4821739196777, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,742", - "created": 1614535193.742122, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 742.1219348907471, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2229.689598083496, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,742", - "created": 1614535193.7422528, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 742.2528266906738, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2229.820489883423, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,742", - "created": 1614535193.742681, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 742.6810264587402, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2230.2486896514893, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,742", - "created": 1614535193.7428257, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 742.8257465362549, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2230.393409729004, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,743", - "created": 1614535193.7430022, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 743.00217628479, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2230.569839477539, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,743", - "created": 1614535193.7431426, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 743.1426048278809, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2230.71026802063, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-server:", - "(64): 64 39 63 30 30 37 30 34 33 64 31 66 36 37 30 36 39 31 39 32 32 35 64 34 38 62 65 63 38 62 32 62 62 39 38 38 63 30 34 32 33 38 66 30 30 38 30 32 35 33 65 66 33 30 65 38 65 36 65 31 22 7d 17 49" + "(64): 61 39 37 32 30 35 65 34 37 31 35 34 31 33 31 64 61 31 61 34 66 36 30 32 36 64 66 36 61 66 31 33 63 63 65 31 66 35 31 35 62 33 63 36 64 63 63 66 66 65 39 31 66 30 31 39 31 62 34 36 22 7d 02 a6" ], - "asctime": "2021-02-28 18:59:53,743", - "created": 1614535193.743476, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,253", + "created": 1742744818.2531385, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 64 39 63 30 30 37 30 34 33 64 31 66 36 37 30 36 39 31 39 32 32 35 64 34 38 62 65 63 38 62 32 62 62 39 38 38 63 30 34 32 33 38 66 30 30 38 30 32 35 33 65 66 33 30 65 38 65 36 65 31 22 7d 17 49", + "message": "comm-server: TX -> (64): 61 39 37 32 30 35 65 34 37 31 35 34 31 33 31 64 61 31 61 34 66 36 30 32 36 64 66 36 61 66 31 33 63 63 65 31 66 35 31 35 62 33 63 36 64 63 63 66 66 65 39 31 66 30 31 39 31 62 34 36 22 7d 02 a6", "module": "__init__", - "msecs": 743.4759140014648, + "msecs": 253.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2231.043577194214, + "relativeCreated": 2156.825304031372, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", - "(64): 64 39 63 30 30 37 30 34 33 64 31 66 36 37 30 36 39 31 39 32 32 35 64 34 38 62 65 63 38 62 32 62 62 39 38 38 63 30 34 32 33 38 66 30 30 38 30 32 35 33 65 66 33 30 65 38 65 36 65 31 22 7d 17 49" + "(64): 61 39 37 32 30 35 65 34 37 31 35 34 31 33 31 64 61 31 61 34 66 36 30 32 36 64 66 36 61 66 31 33 63 63 65 31 66 35 31 35 62 33 63 36 64 63 63 66 66 65 39 31 66 30 31 39 31 62 34 36 22 7d 02 a6" ], - "asctime": "2021-02-28 18:59:53,751", - "created": 1614535193.7519479, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,261", + "created": 1742744818.2618399, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 64 39 63 30 30 37 30 34 33 64 31 66 36 37 30 36 39 31 39 32 32 35 64 34 38 62 65 63 38 62 32 62 62 39 38 38 63 30 34 32 33 38 66 30 30 38 30 32 35 33 65 66 33 30 65 38 65 36 65 31 22 7d 17 49", + "message": "comm-client: RX <- (64): 61 39 37 32 30 35 65 34 37 31 35 34 31 33 31 64 61 31 61 34 66 36 30 32 36 64 66 36 61 66 31 33 63 63 65 31 66 35 31 35 62 33 63 36 64 63 63 66 66 65 39 31 66 30 31 39 31 62 34 36 22 7d 02 a6", "module": "__init__", - "msecs": 751.9478797912598, + "msecs": 261.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2239.515542984009, + "relativeCreated": 2165.5266284942627, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-server:", - "(4): a2 77 3a 3e" + "(4): ff d8 3a 3e" ], - "asctime": "2021-02-28 18:59:53,752", - "created": 1614535193.7526367, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,262", + "created": 1742744818.26256, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): a2 77 3a 3e", + "message": "comm-server: TX -> (4): ff d8 3a 3e", "module": "__init__", - "msecs": 752.6366710662842, + "msecs": 262.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2240.204334259033, + "relativeCreated": 2166.2466526031494, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", - "(4): a2 77 3a 3e" + "(4): ff d8 3a 3e" ], - "asctime": "2021-02-28 18:59:53,753", - "created": 1614535193.7535086, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,263", + "created": 1742744818.2634895, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): a2 77 3a 3e", + "message": "comm-client: RX <- (4): ff d8 3a 3e", "module": "__init__", - "msecs": 753.5085678100586, + "msecs": 263.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2241.0762310028076, + "relativeCreated": 2167.1762466430664, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,753", - "created": 1614535193.7538097, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 753.8096904754639, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2241.377353668213, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,753", - "created": 1614535193.7539933, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 753.9932727813721, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2241.560935974121, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 66 30 63 64 39 63 30 30 37 30 34 33 64 31 66 36 37 30 36 39 31 39 32 32 35 64 34 38 62 65 63 38 62 32 62 62 39 38 38 63 30 34 32 33 38 66 30 30 38 30 32 35 33 65 66 33 30 65 38 65 36 65 31 22 7d 17 49 a2 77" - ], - "asctime": "2021-02-28 18:59:53,754", - "created": 1614535193.7543626, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 66 30 63 64 39 63 30 30 37 30 34 33 64 31 66 36 37 30 36 39 31 39 32 32 35 64 34 38 62 65 63 38 62 32 62 62 39 38 38 63 30 34 32 33 38 66 30 30 38 30 32 35 33 65 66 33 30 65 38 65 36 65 31 22 7d 17 49 a2 77", - "module": "stp", - "msecs": 754.3625831604004, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2241.9302463531494, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ @@ -173615,56 +10505,54 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "'5f0cd9c007043d1f6706919225d48bec8b2bb988c04238f0080253ef30e8e6e1'" + "'0110a97205e47154131da1a4f6026df6af13cce1f515b3c6dccffe91f0191b46'" ], - "asctime": "2021-02-28 18:59:53,754", - "created": 1614535193.75476, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,264", + "created": 1742744818.264272, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'5f0cd9c007043d1f6706919225d48bec8b2bb988c04238f0080253ef30e8e6e1'\"", + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'0110a97205e47154131da1a4f6026df6af13cce1f515b3c6dccffe91f0191b46'\"", "module": "__init__", - "msecs": 754.7600269317627, + "msecs": 264.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2242.3276901245117, + "relativeCreated": 2167.9587364196777, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-02-28 18:59:53,754", - "created": 1614535193.754959, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,264", + "created": 1742744818.264514, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 754.9591064453125, + "msecs": 264.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2242.5267696380615, + "relativeCreated": 2168.200731277466, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ @@ -173672,602 +10560,236 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'7215bbdbcb13761eaa69d53ab23b1db64a68db7c75a2125207e5696458a49c19c1268696f2208bcdfc513d3eed95b6c7f810b2beeb4711bfb457876a93360ae8'" + "'ccad1e0dbfa7138e8617021934623e859f9ec96e32bb9b42d4ae3c0576808ddfad5848fbb0b9277fab9661760f5acfba1f50b84f3aad5fd85dc7cdc69b35f179'" ], - "asctime": "2021-02-28 18:59:53,755", - "created": 1614535193.755251, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,264", + "created": 1742744818.264997, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'7215bbdbcb13761eaa69d53ab23b1db64a68db7c75a2125207e5696458a49c19c1268696f2208bcdfc513d3eed95b6c7f810b2beeb4711bfb457876a93360ae8'\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'ccad1e0dbfa7138e8617021934623e859f9ec96e32bb9b42d4ae3c0576808ddfad5848fbb0b9277fab9661760f5acfba1f50b84f3aad5fd85dc7cdc69b35f179'\"", "module": "__init__", - "msecs": 755.2509307861328, + "msecs": 264.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2242.818593978882, + "relativeCreated": 2168.6837673187256, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 32 31 35" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 63 61 64" ], - "asctime": "2021-02-28 18:59:53,756", - "created": 1614535193.7564096, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,266", + "created": 1742744818.266224, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 32 31 35", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 63 61 64", "module": "__init__", - "msecs": 756.4096450805664, + "msecs": 266.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2243.9773082733154, + "relativeCreated": 2169.910669326782, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 32 31 35" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 63 61 64" ], - "asctime": "2021-02-28 18:59:53,764", - "created": 1614535193.7649553, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,274", + "created": 1742744818.2747545, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 37 32 31 35", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 63 61 64", "module": "__init__", - "msecs": 764.9552822113037, + "msecs": 274.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2252.5229454040527, + "relativeCreated": 2178.441286087036, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,765", - "created": 1614535193.7652662, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 765.2661800384521, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2252.833843231201, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,765", - "created": 1614535193.765444, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 765.4440402984619, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2253.011703491211, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,765", - "created": 1614535193.7656791, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 765.679121017456, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2253.246784210205, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,765", - "created": 1614535193.7658317, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 765.831708908081, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2253.39937210083, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,766", - "created": 1614535193.766036, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 766.0360336303711, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2253.60369682312, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,766", - "created": 1614535193.766165, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 766.165018081665, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2253.732681274414, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,766", - "created": 1614535193.7663436, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 766.3435935974121, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2253.911256790161, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,766", - "created": 1614535193.7664704, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 766.4704322814941, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2254.038095474243, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,766", - "created": 1614535193.7666376, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 766.6375637054443, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2254.2052268981934, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,766", - "created": 1614535193.7667625, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 766.7624950408936, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2254.3301582336426, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", - "(64): 62 62 64 62 63 62 31 33 37 36 31 65 61 61 36 39 64 35 33 61 62 32 33 62 31 64 62 36 34 61 36 38 64 62 37 63 37 35 61 32 31 32 35 32 30 37 65 35 36 39 36 34 35 38 61 34 39 63 31 39 63 31 32 36" + "(64): 31 65 30 64 62 66 61 37 31 33 38 65 38 36 31 37 30 32 31 39 33 34 36 32 33 65 38 35 39 66 39 65 63 39 36 65 33 32 62 62 39 62 34 32 64 34 61 65 33 63 30 35 37 36 38 30 38 64 64 66 61 64 35 38" ], - "asctime": "2021-02-28 18:59:53,767", - "created": 1614535193.7671275, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,275", + "created": 1742744818.2756257, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 62 62 64 62 63 62 31 33 37 36 31 65 61 61 36 39 64 35 33 61 62 32 33 62 31 64 62 36 34 61 36 38 64 62 37 63 37 35 61 32 31 32 35 32 30 37 65 35 36 39 36 34 35 38 61 34 39 63 31 39 63 31 32 36", + "message": "comm-client: TX -> (64): 31 65 30 64 62 66 61 37 31 33 38 65 38 36 31 37 30 32 31 39 33 34 36 32 33 65 38 35 39 66 39 65 63 39 36 65 33 32 62 62 39 62 34 32 64 34 61 65 33 63 30 35 37 36 38 30 38 64 64 66 61 64 35 38", "module": "__init__", - "msecs": 767.127513885498, + "msecs": 275.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2254.695177078247, + "relativeCreated": 2179.3124675750732, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(64): 62 62 64 62 63 62 31 33 37 36 31 65 61 61 36 39 64 35 33 61 62 32 33 62 31 64 62 36 34 61 36 38 64 62 37 63 37 35 61 32 31 32 35 32 30 37 65 35 36 39 36 34 35 38 61 34 39 63 31 39 63 31 32 36" + "(64): 31 65 30 64 62 66 61 37 31 33 38 65 38 36 31 37 30 32 31 39 33 34 36 32 33 65 38 35 39 66 39 65 63 39 36 65 33 32 62 62 39 62 34 32 64 34 61 65 33 63 30 35 37 36 38 30 38 64 64 66 61 64 35 38" ], - "asctime": "2021-02-28 18:59:53,775", - "created": 1614535193.7755938, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,284", + "created": 1742744818.2842233, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 62 62 64 62 63 62 31 33 37 36 31 65 61 61 36 39 64 35 33 61 62 32 33 62 31 64 62 36 34 61 36 38 64 62 37 63 37 35 61 32 31 32 35 32 30 37 65 35 36 39 36 34 35 38 61 34 39 63 31 39 63 31 32 36", + "message": "comm-server: RX <- (64): 31 65 30 64 62 66 61 37 31 33 38 65 38 36 31 37 30 32 31 39 33 34 36 32 33 65 38 35 39 66 39 65 63 39 36 65 33 32 62 62 39 62 34 32 64 34 61 65 33 63 30 35 37 36 38 30 38 64 64 66 61 64 35 38", "module": "__init__", - "msecs": 775.5937576293945, + "msecs": 284.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2263.1614208221436, + "relativeCreated": 2187.9100799560547, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", - "(64): 38 36 39 36 66 32 32 30 38 62 63 64 66 63 35 31 33 64 33 65 65 64 39 35 62 36 63 37 66 38 31 30 62 32 62 65 65 62 34 37 31 31 62 66 62 34 35 37 38 37 36 61 39 33 33 36 30 61 65 38 22 7d 51 5c" + "(64): 34 38 66 62 62 30 62 39 32 37 37 66 61 62 39 36 36 31 37 36 30 66 35 61 63 66 62 61 31 66 35 30 62 38 34 66 33 61 61 64 35 66 64 38 35 64 63 37 63 64 63 36 39 62 33 35 66 31 37 39 22 7d 9f 4f" ], - "asctime": "2021-02-28 18:59:53,776", - "created": 1614535193.7763932, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,284", + "created": 1742744818.2849827, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 38 36 39 36 66 32 32 30 38 62 63 64 66 63 35 31 33 64 33 65 65 64 39 35 62 36 63 37 66 38 31 30 62 32 62 65 65 62 34 37 31 31 62 66 62 34 35 37 38 37 36 61 39 33 33 36 30 61 65 38 22 7d 51 5c", + "message": "comm-client: TX -> (64): 34 38 66 62 62 30 62 39 32 37 37 66 61 62 39 36 36 31 37 36 30 66 35 61 63 66 62 61 31 66 35 30 62 38 34 66 33 61 61 64 35 66 64 38 35 64 63 37 63 64 63 36 39 62 33 35 66 31 37 39 22 7d 9f 4f", "module": "__init__", - "msecs": 776.3931751251221, + "msecs": 284.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2263.960838317871, + "relativeCreated": 2188.669443130493, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(64): 38 36 39 36 66 32 32 30 38 62 63 64 66 63 35 31 33 64 33 65 65 64 39 35 62 36 63 37 66 38 31 30 62 32 62 65 65 62 34 37 31 31 62 66 62 34 35 37 38 37 36 61 39 33 33 36 30 61 65 38 22 7d 51 5c" + "(64): 34 38 66 62 62 30 62 39 32 37 37 66 61 62 39 36 36 31 37 36 30 66 35 61 63 66 62 61 31 66 35 30 62 38 34 66 33 61 61 64 35 66 64 38 35 64 63 37 63 64 63 36 39 62 33 35 66 31 37 39 22 7d 9f 4f" ], - "asctime": "2021-02-28 18:59:53,784", - "created": 1614535193.7848246, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,293", + "created": 1742744818.2935636, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 38 36 39 36 66 32 32 30 38 62 63 64 66 63 35 31 33 64 33 65 65 64 39 35 62 36 63 37 66 38 31 30 62 32 62 65 65 62 34 37 31 31 62 66 62 34 35 37 38 37 36 61 39 33 33 36 30 61 65 38 22 7d 51 5c", + "message": "comm-server: RX <- (64): 34 38 66 62 62 30 62 39 32 37 37 66 61 62 39 36 36 31 37 36 30 66 35 61 63 66 62 61 31 66 35 30 62 38 34 66 33 61 61 64 35 66 64 38 35 64 63 37 63 64 63 36 39 62 33 35 66 31 37 39 22 7d 9f 4f", "module": "__init__", - "msecs": 784.8246097564697, + "msecs": 293.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2272.3922729492188, + "relativeCreated": 2197.2503662109375, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", - "(4): b7 c3 3a 3e" + "(4): 25 8d 3a 3e" ], - "asctime": "2021-02-28 18:59:53,785", - "created": 1614535193.7855477, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,294", + "created": 1742744818.2942817, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): b7 c3 3a 3e", + "message": "comm-client: TX -> (4): 25 8d 3a 3e", "module": "__init__", - "msecs": 785.5477333068848, + "msecs": 294.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2273.115396499634, + "relativeCreated": 2197.9684829711914, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(4): b7 c3 3a 3e" + "(4): 25 8d 3a 3e" ], - "asctime": "2021-02-28 18:59:53,786", - "created": 1614535193.7864528, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,295", + "created": 1742744818.2952032, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): b7 c3 3a 3e", + "message": "comm-server: RX <- (4): 25 8d 3a 3e", "module": "__init__", - "msecs": 786.4527702331543, + "msecs": 295.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2274.0204334259033, + "relativeCreated": 2198.889970779419, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,786", - "created": 1614535193.7867126, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 786.712646484375, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2274.280309677124, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,786", - "created": 1614535193.7868845, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 786.8845462799072, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2274.4522094726562, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 37 32 31 35 62 62 64 62 63 62 31 33 37 36 31 65 61 61 36 39 64 35 33 61 62 32 33 62 31 64 62 36 34 61 36 38 64 62 37 63 37 35 61 32 31 32 35 32 30 37 65 35 36 39 36 34 35 38 61 34 39 63 31 39 63 31 32 36 38 36 39 36 66 32 32 30 38 62 63 64 66 63 35 31 33 64 33 65 65 64 39 35 62 36 63 37 66 38 31 30 62 32 62 65 65 62 34 37 31 31 62 66 62 34 35 37 38 37 36 61 39 33 33 36 30 61 65 38 22 7d 51 5c b7 c3" - ], - "asctime": "2021-02-28 18:59:53,787", - "created": 1614535193.7873127, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 37 32 31 35 62 62 64 62 63 62 31 33 37 36 31 65 61 61 36 39 64 35 33 61 62 32 33 62 31 64 62 36 34 61 36 38 64 62 37 63 37 35 61 32 31 32 35 32 30 37 65 35 36 39 36 34 35 38 61 34 39 63 31 39 63 31 32 36 38 36 39 36 66 32 32 30 38 62 63 64 66 63 35 31 33 64 33 65 65 64 39 35 62 36 63 37 66 38 31 30 62 32 62 65 65 62 34 37 31 31 62 66 62 34 35 37 38 37 36 61 39 33 33 36 30 61 65 38 22 7d 51 5c b7 c3", - "module": "stp", - "msecs": 787.3127460479736, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2274.8804092407227, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -174275,56 +10797,54 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "'7215bbdbcb13761eaa69d53ab23b1db64a68db7c75a2125207e5696458a49c19c1268696f2208bcdfc513d3eed95b6c7f810b2beeb4711bfb457876a93360ae8'" + "'ccad1e0dbfa7138e8617021934623e859f9ec96e32bb9b42d4ae3c0576808ddfad5848fbb0b9277fab9661760f5acfba1f50b84f3aad5fd85dc7cdc69b35f179'" ], - "asctime": "2021-02-28 18:59:53,787", - "created": 1614535193.7877157, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,296", + "created": 1742744818.2961333, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'7215bbdbcb13761eaa69d53ab23b1db64a68db7c75a2125207e5696458a49c19c1268696f2208bcdfc513d3eed95b6c7f810b2beeb4711bfb457876a93360ae8'\"", + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'ccad1e0dbfa7138e8617021934623e859f9ec96e32bb9b42d4ae3c0576808ddfad5848fbb0b9277fab9661760f5acfba1f50b84f3aad5fd85dc7cdc69b35f179'\"", "module": "__init__", - "msecs": 787.7156734466553, + "msecs": 296.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2275.2833366394043, + "relativeCreated": 2199.820041656494, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-02-28 18:59:53,787", - "created": 1614535193.787917, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,296", + "created": 1742744818.2963834, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 787.916898727417, + "msecs": 296.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2275.484561920166, + "relativeCreated": 2200.0701427459717, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -174334,36 +10854,34 @@ "status: okay", "False" ], - "asctime": "2021-02-28 18:59:53,788", - "created": 1614535193.7882364, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,296", + "created": 1742744818.2967315, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"False\"", "module": "__init__", - "msecs": 788.2363796234131, + "msecs": 296.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2275.804042816162, + "relativeCreated": 2200.41823387146, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65" ], - "asctime": "2021-02-28 18:59:53,789", - "created": 1614535193.789136, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,297", + "created": 1742744818.297559, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -174372,25 +10890,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65", "module": "__init__", - "msecs": 789.1359329223633, + "msecs": 297.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2276.7035961151123, + "relativeCreated": 2201.2457847595215, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65" ], - "asctime": "2021-02-28 18:59:53,797", - "created": 1614535193.797865, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,306", + "created": 1742744818.306225, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -174399,300 +10916,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 66 61 6c 73 65", "module": "__init__", - "msecs": 797.8649139404297, + "msecs": 306.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2285.4325771331787, + "relativeCreated": 2209.911823272705, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,798", - "created": 1614535193.7981799, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 798.1798648834229, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2285.747528076172, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,798", - "created": 1614535193.7983546, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 798.3546257019043, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2285.9222888946533, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,798", - "created": 1614535193.7985609, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 798.5608577728271, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2286.128520965576, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,798", - "created": 1614535193.7987032, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 798.7031936645508, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2286.2708568573, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,798", - "created": 1614535193.7989116, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 798.9115715026855, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2286.4792346954346, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,799", - "created": 1614535193.7990718, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 799.0717887878418, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2286.639451980591, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,799", - "created": 1614535193.7992678, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 799.2677688598633, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2286.8354320526123, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,799", - "created": 1614535193.799399, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 799.3988990783691, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2286.966562271118, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,799", - "created": 1614535193.7995732, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 799.5731830596924, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2287.1408462524414, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,799", - "created": 1614535193.7997112, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 799.7112274169922, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2287.278890609741, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-server:", "(7): 7d ea 0a 5c b4 3a 3e" ], - "asctime": "2021-02-28 18:59:53,799", - "created": 1614535193.7999625, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,306", + "created": 1742744818.3069599, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -174701,25 +10942,24 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d ea 0a 5c b4 3a 3e", "module": "__init__", - "msecs": 799.9625205993652, + "msecs": 306.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2287.5301837921143, + "relativeCreated": 2210.646629333496, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", "(7): 7d ea 0a 5c b4 3a 3e" ], - "asctime": "2021-02-28 18:59:53,801", - "created": 1614535193.8011687, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,308", + "created": 1742744818.3082662, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -174728,98 +10968,16 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d ea 0a 5c b4 3a 3e", "module": "__init__", - "msecs": 801.16868019104, + "msecs": 308.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2288.736343383789, + "relativeCreated": 2211.9529247283936, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,801", - "created": 1614535193.8014643, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 801.464319229126, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2289.031982421875, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,801", - "created": 1614535193.8016458, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 801.6457557678223, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2289.2134189605713, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 66 61 6c 73 65 7d ea 0a 5c b4" - ], - "asctime": "2021-02-28 18:59:53,801", - "created": 1614535193.8019345, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 66 61 6c 73 65 7d ea 0a 5c b4", - "module": "stp", - "msecs": 801.9344806671143, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2289.5021438598633, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ @@ -174829,108 +10987,104 @@ "status: okay", "False" ], - "asctime": "2021-02-28 18:59:53,802", - "created": 1614535193.8023283, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,308", + "created": 1742744818.3089452, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"False\"", "module": "__init__", - "msecs": 802.32834815979, + "msecs": 308.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2289.896011352539, + "relativeCreated": 2212.631940841675, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-02-28 18:59:53,802", - "created": 1614535193.8025258, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,309", + "created": 1742744818.309188, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 802.5257587432861, + "msecs": 309.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2290.093421936035, + "relativeCreated": 2212.8746509552, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 18:59:53,802", - "created": 1614535193.8026848, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,309", + "created": 1742744818.3093896, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 375, + "lineno": 373, "message": "prot-client: Got negative authentification feedback", "module": "__init__", - "msecs": 802.6847839355469, + "msecs": 309.0, "msg": "%s Got negative authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2290.252447128296, + "relativeCreated": 2213.07635307312, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" } ], - "msecs": 818.5200691223145, + "msecs": 330.0, "msg": "Performing Authentification", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2306.0877323150635, + "relativeCreated": 2234.4090938568115, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.015835285186767578 + "time_consumption": 0.021332740783691406 }, { "args": [ "False", "" ], - "asctime": "2021-02-28 18:59:53,819", - "created": 1614535193.8195372, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,331", + "created": 1742744818.3316936, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Return Value of authentification method is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -174940,9 +11094,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:53,819", - "created": 1614535193.8191478, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,331", + "created": 1742744818.3313031, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -174951,72 +11104,71 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 819.1478252410889, + "msecs": 331.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2306.715488433838, + "relativeCreated": 2234.989881515503, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Return Value of authentification method", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:53,819", - "created": 1614535193.8193634, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,331", + "created": 1742744818.3315163, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 819.3633556365967, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 331.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2306.9310188293457, + "relativeCreated": 2235.2030277252197, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 819.5371627807617, + "msecs": 331.0, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2307.1048259735107, + "relativeCreated": 2235.3804111480713, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00017380714416503906 + "time_consumption": 0.0001773834228515625 }, { "args": [ "False", "" ], - "asctime": "2021-02-28 18:59:53,820", - "created": 1614535193.8200724, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,332", + "created": 1742744818.332342, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of server is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -175026,9 +11178,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:53,819", - "created": 1614535193.8197904, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,332", + "created": 1742744818.3320112, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -175037,72 +11188,71 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 819.7903633117676, + "msecs": 332.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2307.3580265045166, + "relativeCreated": 2235.6979846954346, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of server", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:53,819", - "created": 1614535193.8199375, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,332", + "created": 1742744818.332182, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 819.9374675750732, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 332.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2307.5051307678223, + "relativeCreated": 2235.8686923980713, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 820.0724124908447, + "msecs": 332.0, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2307.6400756835938, + "relativeCreated": 2236.0286712646484, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00013494491577148438 + "time_consumption": 0.00015997886657714844 }, { "args": [ "False", "" ], - "asctime": "2021-02-28 18:59:53,820", - "created": 1614535193.8205612, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,332", + "created": 1742744818.33293, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of client is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -175112,9 +11262,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:53,820", - "created": 1614535193.8202944, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,332", + "created": 1742744818.3326125, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -175123,63 +11272,62 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 820.2943801879883, + "msecs": 332.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2307.8620433807373, + "relativeCreated": 2236.2992763519287, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of client", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:53,820", - "created": 1614535193.8204317, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,332", + "created": 1742744818.3327773, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 820.4317092895508, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 332.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2307.9993724823, + "relativeCreated": 2236.464023590088, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 820.5611705780029, + "msecs": 332.0, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2308.128833770752, + "relativeCreated": 2236.616849899292, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00012946128845214844 + "time_consumption": 0.00015282630920410156 }, { "args": [], - "asctime": "2021-02-28 18:59:53,820", - "created": 1614535193.8207562, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,333", + "created": 1742744818.3331606, "exc_text": null, "filename": "test_communication.py", "funcName": "manual_authentification", @@ -175189,23 +11337,22 @@ "message": "Identical secrets set", "module": "test_communication", "moduleLogger": [], - "msecs": 820.756196975708, + "msecs": 333.0, "msg": "Identical secrets set", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2308.323860168457, + "relativeCreated": 2236.847400665283, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", "time_consumption": 0.0 }, { "args": [], - "asctime": "2021-02-28 18:59:53,922", - "created": 1614535193.922193, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,434", + "created": 1742744818.4345274, "exc_text": null, "filename": "test_communication.py", "funcName": "manual_authentification", @@ -175223,26 +11370,25 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:53,821", - "created": 1614535193.8210795, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,333", + "created": 1742744818.333518, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 821.0794925689697, + "msecs": 333.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2308.6471557617188, + "relativeCreated": 2237.2047901153564, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -175250,9 +11396,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:53,822", - "created": 1614535193.8220563, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,334", + "created": 1742744818.3343868, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -175261,25 +11406,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 822.0562934875488, + "msecs": 334.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2309.623956680298, + "relativeCreated": 2238.0735874176025, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:53,830", - "created": 1614535193.8305664, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,343", + "created": 1742744818.3431535, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -175288,300 +11432,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 830.56640625, + "msecs": 343.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2318.134069442749, + "relativeCreated": 2246.840238571167, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,830", - "created": 1614535193.830904, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 830.9040069580078, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2318.471670150757, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,831", - "created": 1614535193.8310823, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 831.0823440551758, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2318.650007247925, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,831", - "created": 1614535193.8312857, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 831.2857151031494, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2318.8533782958984, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,831", - "created": 1614535193.8314269, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 831.4268589019775, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2318.9945220947266, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,831", - "created": 1614535193.83163, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 831.6299915313721, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2319.197654724121, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,831", - "created": 1614535193.8317583, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 831.7582607269287, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2319.3259239196777, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,831", - "created": 1614535193.83194, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 831.9399356842041, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2319.507598876953, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,832", - "created": 1614535193.8320794, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 832.0794105529785, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2319.6470737457275, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,832", - "created": 1614535193.8322506, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 832.2505950927734, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2319.8182582855225, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,832", - "created": 1614535193.8323767, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 832.3767185211182, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2319.944381713867, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-02-28 18:59:53,832", - "created": 1614535193.832625, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,343", + "created": 1742744818.3438911, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -175590,25 +11458,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 832.6249122619629, + "msecs": 343.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2320.192575454712, + "relativeCreated": 2247.577905654907, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-02-28 18:59:53,833", - "created": 1614535193.833726, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,345", + "created": 1742744818.345056, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -175617,98 +11484,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 833.7259292602539, + "msecs": 345.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2321.293592453003, + "relativeCreated": 2248.7428188323975, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,833", - "created": 1614535193.8339918, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 833.9917659759521, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2321.559429168701, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,834", - "created": 1614535193.8341815, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 834.181547164917, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2321.749210357666, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 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 fd 82 a2 a9" - ], - "asctime": "2021-02-28 18:59:53,834", - "created": 1614535193.8344243, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 fd 82 a2 a9", - "module": "stp", - "msecs": 834.4242572784424, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2321.9919204711914, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -175718,54 +11503,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:53,834", - "created": 1614535193.8348231, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,345", + "created": 1742744818.3457325, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 834.8231315612793, + "msecs": 345.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2322.3907947540283, + "relativeCreated": 2249.4192123413086, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-02-28 18:59:53,835", - "created": 1614535193.8350177, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,346", + "created": 1742744818.346003, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 835.0176811218262, + "msecs": 346.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2322.585344314575, + "relativeCreated": 2249.689817428589, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -175773,548 +11556,184 @@ "TX ->", "service: authentification response, data_id: seed", "status: okay", - "'c7e5a3456599a422b2ca0c711addfe06cf7e063282ae3b6d8a5072883f0c082d'" + "'9cbb1defd4e0909a9d1471cd7e9b045b639ea75e19d3e5f66be7d91d7426bfbe'" ], - "asctime": "2021-02-28 18:59:53,835", - "created": 1614535193.8352811, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,346", + "created": 1742744818.3463483, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'c7e5a3456599a422b2ca0c711addfe06cf7e063282ae3b6d8a5072883f0c082d'\"", + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'9cbb1defd4e0909a9d1471cd7e9b045b639ea75e19d3e5f66be7d91d7426bfbe'\"", "module": "__init__", - "msecs": 835.2811336517334, + "msecs": 346.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2322.8487968444824, + "relativeCreated": 2250.035047531128, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 65 35" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 63 62 62" ], - "asctime": "2021-02-28 18:59:53,836", - "created": 1614535193.8362718, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,347", + "created": 1742744818.3473206, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 65 35", + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 63 62 62", "module": "__init__", - "msecs": 836.2717628479004, + "msecs": 347.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2323.8394260406494, + "relativeCreated": 2251.007318496704, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 65 35" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 63 62 62" ], - "asctime": "2021-02-28 18:59:53,844", - "created": 1614535193.844829, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,356", + "created": 1742744818.3560364, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 37 65 35", + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 39 63 62 62", "module": "__init__", - "msecs": 844.8290824890137, + "msecs": 356.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2332.3967456817627, + "relativeCreated": 2259.72318649292, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,845", - "created": 1614535193.8451433, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 845.1433181762695, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2332.7109813690186, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,845", - "created": 1614535193.8453183, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 845.3183174133301, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2332.885980606079, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,845", - "created": 1614535193.8455226, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 845.5226421356201, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2333.090305328369, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,845", - "created": 1614535193.8457, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 845.7000255584717, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2333.2676887512207, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,845", - "created": 1614535193.8459172, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 845.9172248840332, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2333.484888076782, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,846", - "created": 1614535193.8460753, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 846.0752964019775, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2333.6429595947266, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,846", - "created": 1614535193.84626, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 846.2600708007812, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2333.8277339935303, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,846", - "created": 1614535193.8463874, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 846.3873863220215, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2333.9550495147705, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,846", - "created": 1614535193.846559, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 846.5590476989746, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2334.1267108917236, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,846", - "created": 1614535193.8466861, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 846.6861248016357, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2334.2537879943848, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-server:", - "(64): 61 33 34 35 36 35 39 39 61 34 32 32 62 32 63 61 30 63 37 31 31 61 64 64 66 65 30 36 63 66 37 65 30 36 33 32 38 32 61 65 33 62 36 64 38 61 35 30 37 32 38 38 33 66 30 63 30 38 32 64 22 7d be f5" + "(64): 31 64 65 66 64 34 65 30 39 30 39 61 39 64 31 34 37 31 63 64 37 65 39 62 30 34 35 62 36 33 39 65 61 37 35 65 31 39 64 33 65 35 66 36 36 62 65 37 64 39 31 64 37 34 32 36 62 66 62 65 22 7d 20 ad" ], - "asctime": "2021-02-28 18:59:53,847", - "created": 1614535193.8470495, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,356", + "created": 1742744818.3568983, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (64): 61 33 34 35 36 35 39 39 61 34 32 32 62 32 63 61 30 63 37 31 31 61 64 64 66 65 30 36 63 66 37 65 30 36 33 32 38 32 61 65 33 62 36 64 38 61 35 30 37 32 38 38 33 66 30 63 30 38 32 64 22 7d be f5", + "message": "comm-server: TX -> (64): 31 64 65 66 64 34 65 30 39 30 39 61 39 64 31 34 37 31 63 64 37 65 39 62 30 34 35 62 36 33 39 65 61 37 35 65 31 39 64 33 65 35 66 36 36 62 65 37 64 39 31 64 37 34 32 36 62 66 62 65 22 7d 20 ad", "module": "__init__", - "msecs": 847.0494747161865, + "msecs": 356.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2334.6171379089355, + "relativeCreated": 2260.585069656372, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", - "(64): 61 33 34 35 36 35 39 39 61 34 32 32 62 32 63 61 30 63 37 31 31 61 64 64 66 65 30 36 63 66 37 65 30 36 33 32 38 32 61 65 33 62 36 64 38 61 35 30 37 32 38 38 33 66 30 63 30 38 32 64 22 7d be f5" + "(64): 31 64 65 66 64 34 65 30 39 30 39 61 39 64 31 34 37 31 63 64 37 65 39 62 30 34 35 62 36 33 39 65 61 37 35 65 31 39 64 33 65 35 66 36 36 62 65 37 64 39 31 64 37 34 32 36 62 66 62 65 22 7d 20 ad" ], - "asctime": "2021-02-28 18:59:53,855", - "created": 1614535193.8556297, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,365", + "created": 1742744818.3656387, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (64): 61 33 34 35 36 35 39 39 61 34 32 32 62 32 63 61 30 63 37 31 31 61 64 64 66 65 30 36 63 66 37 65 30 36 33 32 38 32 61 65 33 62 36 64 38 61 35 30 37 32 38 38 33 66 30 63 30 38 32 64 22 7d be f5", + "message": "comm-client: RX <- (64): 31 64 65 66 64 34 65 30 39 30 39 61 39 64 31 34 37 31 63 64 37 65 39 62 30 34 35 62 36 33 39 65 61 37 35 65 31 39 64 33 65 35 66 36 36 62 65 37 64 39 31 64 37 34 32 36 62 66 62 65 22 7d 20 ad", "module": "__init__", - "msecs": 855.6296825408936, + "msecs": 365.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2343.1973457336426, + "relativeCreated": 2269.3254947662354, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-server:", - "(4): 54 ea 3a 3e" + "(4): 12 5e 3a 3e" ], - "asctime": "2021-02-28 18:59:53,856", - "created": 1614535193.8563194, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,366", + "created": 1742744818.3663661, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-server: TX -> (4): 54 ea 3a 3e", + "message": "comm-server: TX -> (4): 12 5e 3a 3e", "module": "__init__", - "msecs": 856.3194274902344, + "msecs": 366.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2343.8870906829834, + "relativeCreated": 2270.052909851074, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", - "(4): 54 ea 3a 3e" + "(4): 12 5e 3a 3e" ], - "asctime": "2021-02-28 18:59:53,857", - "created": 1614535193.8571897, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,367", + "created": 1742744818.3672981, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-client: RX <- (4): 54 ea 3a 3e", + "message": "comm-client: RX <- (4): 12 5e 3a 3e", "module": "__init__", - "msecs": 857.1896553039551, + "msecs": 367.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2344.757318496704, + "relativeCreated": 2270.984888076782, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,857", - "created": 1614535193.8574502, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 857.4502468109131, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2345.017910003662, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,857", - "created": 1614535193.8576243, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 857.6242923736572, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2345.1919555664062, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 37 65 35 61 33 34 35 36 35 39 39 61 34 32 32 62 32 63 61 30 63 37 31 31 61 64 64 66 65 30 36 63 66 37 65 30 36 33 32 38 32 61 65 33 62 36 64 38 61 35 30 37 32 38 38 33 66 30 63 30 38 32 64 22 7d be f5 54 ea" - ], - "asctime": "2021-02-28 18:59:53,858", - "created": 1614535193.8580139, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 63 37 65 35 61 33 34 35 36 35 39 39 61 34 32 32 62 32 63 61 30 63 37 31 31 61 64 64 66 65 30 36 63 66 37 65 30 36 33 32 38 32 61 65 33 62 36 64 38 61 35 30 37 32 38 38 33 66 30 63 30 38 32 64 22 7d be f5 54 ea", - "module": "stp", - "msecs": 858.0138683319092, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2345.581531524658, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ @@ -176322,56 +11741,54 @@ "RX <-", "service: authentification response, data_id: seed", "status: okay", - "'c7e5a3456599a422b2ca0c711addfe06cf7e063282ae3b6d8a5072883f0c082d'" + "'9cbb1defd4e0909a9d1471cd7e9b045b639ea75e19d3e5f66be7d91d7426bfbe'" ], - "asctime": "2021-02-28 18:59:53,858", - "created": 1614535193.8584113, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,368", + "created": 1742744818.3680768, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'c7e5a3456599a422b2ca0c711addfe06cf7e063282ae3b6d8a5072883f0c082d'\"", + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'9cbb1defd4e0909a9d1471cd7e9b045b639ea75e19d3e5f66be7d91d7426bfbe'\"", "module": "__init__", - "msecs": 858.4113121032715, + "msecs": 368.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2345.9789752960205, + "relativeCreated": 2271.763563156128, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "prot-client:", "__authentificate_create_key__" ], - "asctime": "2021-02-28 18:59:53,858", - "created": 1614535193.858609, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,368", + "created": 1742744818.3683548, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 858.6089611053467, + "msecs": 368.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2346.1766242980957, + "relativeCreated": 2272.0415592193604, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ @@ -176379,602 +11796,236 @@ "TX ->", "service: authentification request, data_id: key", "status: okay", - "'5ab03c542a14d3ce74d741329d5c2b61430a40456d806e33cfe2d21d2c264524f7a0eca1da5a5582510dc6db3ccfe7d4377ea2892e41df8ae234bd36d4cf09e1'" + "'2fdf7fec8e11a6a11276d80d8a191e340fee1d7e7212d633ea4b378a965a467530c43e2570b51c30b8a68b51f4c3d9b0f4c25d3cbb91ed1b8130bafabaf226ce'" ], - "asctime": "2021-02-28 18:59:53,858", - "created": 1614535193.8588784, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,368", + "created": 1742744818.3686907, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'5ab03c542a14d3ce74d741329d5c2b61430a40456d806e33cfe2d21d2c264524f7a0eca1da5a5582510dc6db3ccfe7d4377ea2892e41df8ae234bd36d4cf09e1'\"", + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'2fdf7fec8e11a6a11276d80d8a191e340fee1d7e7212d633ea4b378a965a467530c43e2570b51c30b8a68b51f4c3d9b0f4c25d3cbb91ed1b8130bafabaf226ce'\"", "module": "__init__", - "msecs": 858.8783740997314, + "msecs": 368.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2346.4460372924805, + "relativeCreated": 2272.3774909973145, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 61 62 30" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 66 64 66" ], - "asctime": "2021-02-28 18:59:53,860", - "created": 1614535193.860003, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,369", + "created": 1742744818.3698545, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 61 62 30", + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 66 64 66", "module": "__init__", - "msecs": 860.0029945373535, + "msecs": 369.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2347.5706577301025, + "relativeCreated": 2273.541212081909, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 61 62 30" + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 66 64 66" ], - "asctime": "2021-02-28 18:59:53,868", - "created": 1614535193.8686345, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,378", + "created": 1742744818.3786464, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 35 61 62 30", + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 66 64 66", "module": "__init__", - "msecs": 868.6344623565674, + "msecs": 378.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2356.2021255493164, + "relativeCreated": 2282.3331356048584, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,868", - "created": 1614535193.8689435, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 868.943452835083, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2356.511116027832, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,869", - "created": 1614535193.8691156, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 869.1155910491943, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2356.6832542419434, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,869", - "created": 1614535193.869324, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 869.3239688873291, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2356.891632080078, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,869", - "created": 1614535193.869466, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 869.4660663604736, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2357.0337295532227, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,869", - "created": 1614535193.8697274, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 869.727373123169, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2357.295036315918, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,869", - "created": 1614535193.8698666, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 869.8666095733643, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2357.4342727661133, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,870", - "created": 1614535193.8700593, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 870.0592517852783, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2357.6269149780273, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,870", - "created": 1614535193.8701885, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 870.1884746551514, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2357.7561378479004, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,870", - "created": 1614535193.8703582, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 870.3582286834717, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2357.9258918762207, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,870", - "created": 1614535193.8704853, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 870.4853057861328, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2358.052968978882, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", - "(64): 33 63 35 34 32 61 31 34 64 33 63 65 37 34 64 37 34 31 33 32 39 64 35 63 32 62 36 31 34 33 30 61 34 30 34 35 36 64 38 30 36 65 33 33 63 66 65 32 64 32 31 64 32 63 32 36 34 35 32 34 66 37 61 30" + "(64): 37 66 65 63 38 65 31 31 61 36 61 31 31 32 37 36 64 38 30 64 38 61 31 39 31 65 33 34 30 66 65 65 31 64 37 65 37 32 31 32 64 36 33 33 65 61 34 62 33 37 38 61 39 36 35 61 34 36 37 35 33 30 63 34" ], - "asctime": "2021-02-28 18:59:53,870", - "created": 1614535193.8708193, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,379", + "created": 1742744818.3795068, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 33 63 35 34 32 61 31 34 64 33 63 65 37 34 64 37 34 31 33 32 39 64 35 63 32 62 36 31 34 33 30 61 34 30 34 35 36 64 38 30 36 65 33 33 63 66 65 32 64 32 31 64 32 63 32 36 34 35 32 34 66 37 61 30", + "message": "comm-client: TX -> (64): 37 66 65 63 38 65 31 31 61 36 61 31 31 32 37 36 64 38 30 64 38 61 31 39 31 65 33 34 30 66 65 65 31 64 37 65 37 32 31 32 64 36 33 33 65 61 34 62 33 37 38 61 39 36 35 61 34 36 37 35 33 30 63 34", "module": "__init__", - "msecs": 870.8193302154541, + "msecs": 379.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2358.386993408203, + "relativeCreated": 2283.193588256836, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(64): 33 63 35 34 32 61 31 34 64 33 63 65 37 34 64 37 34 31 33 32 39 64 35 63 32 62 36 31 34 33 30 61 34 30 34 35 36 64 38 30 36 65 33 33 63 66 65 32 64 32 31 64 32 63 32 36 34 35 32 34 66 37 61 30" + "(64): 37 66 65 63 38 65 31 31 61 36 61 31 31 32 37 36 64 38 30 64 38 61 31 39 31 65 33 34 30 66 65 65 31 64 37 65 37 32 31 32 64 36 33 33 65 61 34 62 33 37 38 61 39 36 35 61 34 36 37 35 33 30 63 34" ], - "asctime": "2021-02-28 18:59:53,879", - "created": 1614535193.8793821, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,388", + "created": 1742744818.3880785, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 33 63 35 34 32 61 31 34 64 33 63 65 37 34 64 37 34 31 33 32 39 64 35 63 32 62 36 31 34 33 30 61 34 30 34 35 36 64 38 30 36 65 33 33 63 66 65 32 64 32 31 64 32 63 32 36 34 35 32 34 66 37 61 30", + "message": "comm-server: RX <- (64): 37 66 65 63 38 65 31 31 61 36 61 31 31 32 37 36 64 38 30 64 38 61 31 39 31 65 33 34 30 66 65 65 31 64 37 65 37 32 31 32 64 36 33 33 65 61 34 62 33 37 38 61 39 36 35 61 34 36 37 35 33 30 63 34", "module": "__init__", - "msecs": 879.3821334838867, + "msecs": 388.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2366.9497966766357, + "relativeCreated": 2291.7652130126953, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", - "(64): 65 63 61 31 64 61 35 61 35 35 38 32 35 31 30 64 63 36 64 62 33 63 63 66 65 37 64 34 33 37 37 65 61 32 38 39 32 65 34 31 64 66 38 61 65 32 33 34 62 64 33 36 64 34 63 66 30 39 65 31 22 7d 4f c4" + "(64): 33 65 32 35 37 30 62 35 31 63 33 30 62 38 61 36 38 62 35 31 66 34 63 33 64 39 62 30 66 34 63 32 35 64 33 63 62 62 39 31 65 64 31 62 38 31 33 30 62 61 66 61 62 61 66 32 32 36 63 65 22 7d 11 cd" ], - "asctime": "2021-02-28 18:59:53,880", - "created": 1614535193.8801582, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,388", + "created": 1742744818.388858, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (64): 65 63 61 31 64 61 35 61 35 35 38 32 35 31 30 64 63 36 64 62 33 63 63 66 65 37 64 34 33 37 37 65 61 32 38 39 32 65 34 31 64 66 38 61 65 32 33 34 62 64 33 36 64 34 63 66 30 39 65 31 22 7d 4f c4", + "message": "comm-client: TX -> (64): 33 65 32 35 37 30 62 35 31 63 33 30 62 38 61 36 38 62 35 31 66 34 63 33 64 39 62 30 66 34 63 32 35 64 33 63 62 62 39 31 65 64 31 62 38 31 33 30 62 61 66 61 62 61 66 32 32 36 63 65 22 7d 11 cd", "module": "__init__", - "msecs": 880.1581859588623, + "msecs": 388.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2367.7258491516113, + "relativeCreated": 2292.5448417663574, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(64): 65 63 61 31 64 61 35 61 35 35 38 32 35 31 30 64 63 36 64 62 33 63 63 66 65 37 64 34 33 37 37 65 61 32 38 39 32 65 34 31 64 66 38 61 65 32 33 34 62 64 33 36 64 34 63 66 30 39 65 31 22 7d 4f c4" + "(64): 33 65 32 35 37 30 62 35 31 63 33 30 62 38 61 36 38 62 35 31 66 34 63 33 64 39 62 30 66 34 63 32 35 64 33 63 62 62 39 31 65 64 31 62 38 31 33 30 62 61 66 61 62 61 66 32 32 36 63 65 22 7d 11 cd" ], - "asctime": "2021-02-28 18:59:53,888", - "created": 1614535193.8886592, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,397", + "created": 1742744818.397426, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (64): 65 63 61 31 64 61 35 61 35 35 38 32 35 31 30 64 63 36 64 62 33 63 63 66 65 37 64 34 33 37 37 65 61 32 38 39 32 65 34 31 64 66 38 61 65 32 33 34 62 64 33 36 64 34 63 66 30 39 65 31 22 7d 4f c4", + "message": "comm-server: RX <- (64): 33 65 32 35 37 30 62 35 31 63 33 30 62 38 61 36 38 62 35 31 66 34 63 33 64 39 62 30 66 34 63 32 35 64 33 63 62 62 39 31 65 64 31 62 38 31 33 30 62 61 66 61 62 61 66 32 32 36 63 65 22 7d 11 cd", "module": "__init__", - "msecs": 888.6592388153076, + "msecs": 397.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2376.2269020080566, + "relativeCreated": 2301.112651824951, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", - "(4): 6f 98 3a 3e" + "(4): ed d9 3a 3e" ], - "asctime": "2021-02-28 18:59:53,889", - "created": 1614535193.8893807, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,398", + "created": 1742744818.3981462, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", "levelname": "INFO", "levelno": 20, "lineno": 284, - "message": "comm-client: TX -> (4): 6f 98 3a 3e", + "message": "comm-client: TX -> (4): ed d9 3a 3e", "module": "__init__", - "msecs": 889.380693435669, + "msecs": 398.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2376.948356628418, + "relativeCreated": 2301.832914352417, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", - "(4): 6f 98 3a 3e" + "(4): ed d9 3a 3e" ], - "asctime": "2021-02-28 18:59:53,890", - "created": 1614535193.8902457, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,399", + "created": 1742744818.3990703, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", "levelname": "DEBUG", "levelno": 10, "lineno": 414, - "message": "comm-server: RX <- (4): 6f 98 3a 3e", + "message": "comm-server: RX <- (4): ed d9 3a 3e", "module": "__init__", - "msecs": 890.2456760406494, + "msecs": 399.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2377.8133392333984, + "relativeCreated": 2302.7570247650146, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,890", - "created": 1614535193.8905022, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 890.5022144317627, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2378.0698776245117, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,890", - "created": 1614535193.8906736, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 890.6736373901367, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2378.2413005828857, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 61 62 30 33 63 35 34 32 61 31 34 64 33 63 65 37 34 64 37 34 31 33 32 39 64 35 63 32 62 36 31 34 33 30 61 34 30 34 35 36 64 38 30 36 65 33 33 63 66 65 32 64 32 31 64 32 63 32 36 34 35 32 34 66 37 61 30 65 63 61 31 64 61 35 61 35 35 38 32 35 31 30 64 63 36 64 62 33 63 63 66 65 37 64 34 33 37 37 65 61 32 38 39 32 65 34 31 64 66 38 61 65 32 33 34 62 64 33 36 64 34 63 66 30 39 65 31 22 7d 4f c4 6f 98" - ], - "asctime": "2021-02-28 18:59:53,891", - "created": 1614535193.8915107, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 35 61 62 30 33 63 35 34 32 61 31 34 64 33 63 65 37 34 64 37 34 31 33 32 39 64 35 63 32 62 36 31 34 33 30 61 34 30 34 35 36 64 38 30 36 65 33 33 63 66 65 32 64 32 31 64 32 63 32 36 34 35 32 34 66 37 61 30 65 63 61 31 64 61 35 61 35 35 38 32 35 31 30 64 63 36 64 62 33 63 63 66 65 37 64 34 33 37 37 65 61 32 38 39 32 65 34 31 64 66 38 61 65 32 33 34 62 64 33 36 64 34 63 66 30 39 65 31 22 7d 4f c4 6f 98", - "module": "stp", - "msecs": 891.5107250213623, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2379.0783882141113, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -176982,56 +12033,54 @@ "RX <-", "service: authentification request, data_id: key", "status: okay", - "'5ab03c542a14d3ce74d741329d5c2b61430a40456d806e33cfe2d21d2c264524f7a0eca1da5a5582510dc6db3ccfe7d4377ea2892e41df8ae234bd36d4cf09e1'" + "'2fdf7fec8e11a6a11276d80d8a191e340fee1d7e7212d633ea4b378a965a467530c43e2570b51c30b8a68b51f4c3d9b0f4c25d3cbb91ed1b8130bafabaf226ce'" ], - "asctime": "2021-02-28 18:59:53,891", - "created": 1614535193.8919215, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,399", + "created": 1742744818.3999946, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'5ab03c542a14d3ce74d741329d5c2b61430a40456d806e33cfe2d21d2c264524f7a0eca1da5a5582510dc6db3ccfe7d4377ea2892e41df8ae234bd36d4cf09e1'\"", + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'2fdf7fec8e11a6a11276d80d8a191e340fee1d7e7212d633ea4b378a965a467530c43e2570b51c30b8a68b51f4c3d9b0f4c25d3cbb91ed1b8130bafabaf226ce'\"", "module": "__init__", - "msecs": 891.9215202331543, + "msecs": 399.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2379.4891834259033, + "relativeCreated": 2303.6813735961914, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "prot-server:", "__authentificate_check_key__" ], - "asctime": "2021-02-28 18:59:53,892", - "created": 1614535193.892134, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,400", + "created": 1742744818.4002388, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 892.1339511871338, + "msecs": 400.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2379.701614379883, + "relativeCreated": 2303.9255142211914, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -177041,36 +12090,34 @@ "status: okay", "True" ], - "asctime": "2021-02-28 18:59:53,892", - "created": 1614535193.8924124, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,400", + "created": 1742744818.4005764, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 892.4124240875244, + "msecs": 400.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2379.9800872802734, + "relativeCreated": 2304.263114929199, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-02-28 18:59:53,893", - "created": 1614535193.8931994, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,401", + "created": 1742744818.4014354, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -177079,25 +12126,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 893.1994438171387, + "msecs": 401.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2380.7671070098877, + "relativeCreated": 2305.122137069702, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" ], - "asctime": "2021-02-28 18:59:53,901", - "created": 1614535193.901915, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,410", + "created": 1742744818.4100912, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -177106,300 +12152,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", "module": "__init__", - "msecs": 901.9150733947754, + "msecs": 410.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2389.4827365875244, + "relativeCreated": 2313.7779235839844, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,902", - "created": 1614535193.90223, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 902.2300243377686, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2389.7976875305176, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,902", - "created": 1614535193.902404, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 902.4040699005127, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2389.9717330932617, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,902", - "created": 1614535193.9026074, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 902.6074409484863, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2390.1751041412354, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,902", - "created": 1614535193.9027479, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 902.7478694915771, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2390.315532684326, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,902", - "created": 1614535193.9029543, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 902.9543399810791, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2390.522003173828, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,903", - "created": 1614535193.903097, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 903.0969142913818, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2390.664577484131, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,903", - "created": 1614535193.9032774, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 903.2773971557617, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2390.8450603485107, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,903", - "created": 1614535193.9034064, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 903.4063816070557, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2390.9740447998047, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,903", - "created": 1614535193.9035869, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 903.5868644714355, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2391.1545276641846, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,903", - "created": 1614535193.9037268, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 903.7268161773682, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2391.294479370117, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-server:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-02-28 18:59:53,903", - "created": 1614535193.9039803, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,410", + "created": 1742744818.4108305, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -177408,25 +12178,24 @@ "lineno": 284, "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 903.9802551269531, + "msecs": 410.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2391.547918319702, + "relativeCreated": 2314.5172595977783, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "comm-client:", "(6): 94 fe 74 32 3a 3e" ], - "asctime": "2021-02-28 18:59:53,905", - "created": 1614535193.9050763, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,412", + "created": 1742744818.412021, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -177435,98 +12204,16 @@ "lineno": 414, "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", "module": "__init__", - "msecs": 905.076265335083, + "msecs": 412.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2392.643928527832, + "relativeCreated": 2315.7076835632324, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,905", - "created": 1614535193.9053473, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 905.3473472595215, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2392.9150104522705, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,905", - "created": 1614535193.9055233, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 905.5233001708984, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2393.0909633636475, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" - }, - { - "args": [ - "STP:", - "(62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 74 72 75 65 7d 94 fe 74 32" - ], - "asctime": "2021-02-28 18:59:53,905", - "created": 1614535193.9057891, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 31 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 74 72 75 65 7d 94 fe 74 32", - "module": "stp", - "msecs": 905.7891368865967, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2393.3568000793457, - "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ @@ -177536,108 +12223,104 @@ "status: okay", "True" ], - "asctime": "2021-02-28 18:59:53,906", - "created": 1614535193.9061878, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,412", + "created": 1742744818.4127207, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", "module": "__init__", - "msecs": 906.1877727508545, + "msecs": 412.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2393.7554359436035, + "relativeCreated": 2316.4074420928955, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "prot-client:", "__authentificate_process_feedback__" ], - "asctime": "2021-02-28 18:59:53,906", - "created": 1614535193.9063823, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,412", + "created": 1742744818.4129653, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 906.3823223114014, + "msecs": 412.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2393.9499855041504, + "relativeCreated": 2316.6520595550537, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 18:59:53,906", - "created": 1614535193.9065459, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,413", + "created": 1742744818.4131544, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 372, + "lineno": 370, "message": "prot-client: Got positive authentification feedback", "module": "__init__", - "msecs": 906.545877456665, + "msecs": 413.0, "msg": "%s Got positive authentification feedback", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2394.113540649414, + "relativeCreated": 2316.8411254882812, "stack_info": null, - "thread": 140380737632000, - "threadName": "Thread-6" + "thread": 140631273916096, + "threadName": "Thread-6 (_start)" } ], - "msecs": 922.1930503845215, + "msecs": 434.0, "msg": "Performing Authentification", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2409.7607135772705, + "relativeCreated": 2338.214159011841, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.015647172927856445 + "time_consumption": 0.02137303352355957 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 18:59:53,923", - "created": 1614535193.9231677, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,435", + "created": 1742744818.435548, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Return Value of authentification method is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -177647,9 +12330,8 @@ "True", "" ], - "asctime": "2021-02-28 18:59:53,922", - "created": 1614535193.9228115, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,435", + "created": 1742744818.435152, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -177658,72 +12340,71 @@ "lineno": 22, "message": "Result (Return Value of authentification method): True ()", "module": "test", - "msecs": 922.8115081787109, + "msecs": 435.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2410.37917137146, + "relativeCreated": 2338.838815689087, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Return Value of authentification method", + "=", "True", "" ], - "asctime": "2021-02-28 18:59:53,923", - "created": 1614535193.9230068, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,435", + "created": 1742744818.4353688, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Return Value of authentification method): result = True ()", "module": "test", - "msecs": 923.0067729949951, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 435.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2410.574436187744, + "relativeCreated": 2339.0555381774902, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 923.1677055358887, + "msecs": 435.0, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2410.7353687286377, + "relativeCreated": 2339.2348289489746, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 0.000179290771484375 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 18:59:53,923", - "created": 1614535193.9237003, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,436", + "created": 1742744818.4361606, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of server is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -177733,9 +12414,8 @@ "True", "" ], - "asctime": "2021-02-28 18:59:53,923", - "created": 1614535193.92342, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,435", + "created": 1742744818.4358342, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -177744,72 +12424,71 @@ "lineno": 22, "message": "Result (Authentification state of server): True ()", "module": "test", - "msecs": 923.4199523925781, + "msecs": 435.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2410.987615585327, + "relativeCreated": 2339.5209312438965, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of server", + "=", "True", "" ], - "asctime": "2021-02-28 18:59:53,923", - "created": 1614535193.9235656, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,436", + "created": 1742744818.4360034, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of server): result = True ()", "module": "test", - "msecs": 923.5656261444092, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 436.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2411.133289337158, + "relativeCreated": 2339.6902084350586, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 923.7003326416016, + "msecs": 436.0, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2411.2679958343506, + "relativeCreated": 2339.8473262786865, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001347064971923828 + "time_consumption": 0.0001571178436279297 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 18:59:53,924", - "created": 1614535193.924191, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,436", + "created": 1742744818.4367301, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of client is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -177819,9 +12498,8 @@ "True", "" ], - "asctime": "2021-02-28 18:59:53,923", - "created": 1614535193.9239209, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,436", + "created": 1742744818.4364161, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -177830,63 +12508,62 @@ "lineno": 22, "message": "Result (Authentification state of client): True ()", "module": "test", - "msecs": 923.9208698272705, + "msecs": 436.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2411.4885330200195, + "relativeCreated": 2340.1029109954834, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of client", + "=", "True", "" ], - "asctime": "2021-02-28 18:59:53,924", - "created": 1614535193.9240599, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,436", + "created": 1742744818.436578, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of client): result = True ()", "module": "test", - "msecs": 924.0598678588867, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 436.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2411.6275310516357, + "relativeCreated": 2340.2647972106934, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 924.1909980773926, + "msecs": 436.0, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2411.7586612701416, + "relativeCreated": 2340.41690826416, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00013113021850585938 + "time_consumption": 0.00015211105346679688 }, { "args": [], - "asctime": "2021-02-28 18:59:53,924", - "created": 1614535193.9247084, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,437", + "created": 1742744818.4373384, "exc_text": null, "filename": "test_communication.py", "funcName": "manual_authentification", @@ -177900,72 +12577,69 @@ "args": [ "prot-server:" ], - "asctime": "2021-02-28 18:59:53,924", - "created": 1614535193.9243999, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,436", + "created": 1742744818.4369953, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 924.3998527526855, + "msecs": 436.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2411.9675159454346, + "relativeCreated": 2340.682029724121, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 18:59:53,924", - "created": 1614535193.9245732, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,437", + "created": 1742744818.43718, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 924.5731830596924, + "msecs": 437.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2412.1408462524414, + "relativeCreated": 2340.866804122925, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 924.708366394043, + "msecs": 437.0, "msg": "Corrupting the authentification mechanism", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2412.276029586792, + "relativeCreated": 2341.0251140594482, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00013518333435058594 + "time_consumption": 0.0001583099365234375 }, { "args": [], - "asctime": "2021-02-28 18:59:54,327", - "created": 1614535194.3273997, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,839", + "created": 1742744818.8399978, "exc_text": null, "filename": "test_communication.py", "funcName": "manual_authentification", @@ -177983,26 +12657,25 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:53,925", - "created": 1614535193.9250417, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,437", + "created": 1742744818.4377074, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 925.041675567627, + "msecs": 437.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2412.609338760376, + "relativeCreated": 2341.3941860198975, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -178010,9 +12683,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:53,925", - "created": 1614535193.9258745, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,438", + "created": 1742744818.4385934, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -178021,25 +12693,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 925.8744716644287, + "msecs": 438.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2413.4421348571777, + "relativeCreated": 2342.280149459839, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 18:59:53,934", - "created": 1614535193.934544, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,447", + "created": 1742744818.4471438, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -178048,300 +12719,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 934.5440864562988, + "msecs": 447.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2422.111749649048, + "relativeCreated": 2350.830554962158, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,934", - "created": 1614535193.934859, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 934.859037399292, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2422.426700592041, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 18:59:53,935", - "created": 1614535193.9350336, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 935.0335597991943, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2422.6012229919434, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,935", - "created": 1614535193.9352374, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 935.2374076843262, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2422.805070877075, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,935", - "created": 1614535193.9354055, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 935.4054927825928, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2422.973155975342, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,935", - "created": 1614535193.9356127, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 935.612678527832, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2423.180341720581, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,935", - "created": 1614535193.9357407, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 935.7407093048096, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2423.3083724975586, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,935", - "created": 1614535193.935944, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 935.9440803527832, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2423.511743545532, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,936", - "created": 1614535193.936084, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 936.0840320587158, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2423.651695251465, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,936", - "created": 1614535193.9362564, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 936.2564086914062, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2423.8240718841553, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 18:59:53,936", - "created": 1614535193.9363813, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 936.3813400268555, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2423.9490032196045, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-client:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-02-28 18:59:53,936", - "created": 1614535193.9366302, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,447", + "created": 1742744818.447887, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -178350,25 +12745,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 936.6302490234375, + "msecs": 447.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2424.1979122161865, + "relativeCreated": 2351.573705673218, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "comm-server:", "(6): fd 82 a2 a9 3a 3e" ], - "asctime": "2021-02-28 18:59:53,937", - "created": 1614535193.9377208, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,449", + "created": 1742744818.4490612, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -178377,98 +12771,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", "module": "__init__", - "msecs": 937.720775604248, + "msecs": 449.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2425.288438796997, + "relativeCreated": 2352.747917175293, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 18:59:53,937", - "created": 1614535193.9379852, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 937.9851818084717, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2425.5528450012207, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 18:59:53,938", - "created": 1614535193.938158, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 938.1580352783203, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2425.7256984710693, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" - }, - { - "args": [ - "STP:", - "(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 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 fd 82 a2 a9" - ], - "asctime": "2021-02-28 18:59:53,938", - "created": 1614535193.9383998, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 fd 82 a2 a9", - "module": "stp", - "msecs": 938.3997917175293, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 2425.9674549102783, - "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ @@ -178478,82 +12790,79 @@ "status: okay", "None" ], - "asctime": "2021-02-28 18:59:53,938", - "created": 1614535193.9387867, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,449", + "created": 1742744818.4497342, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", "module": "__init__", - "msecs": 938.7867450714111, + "msecs": 449.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2426.35440826416, + "relativeCreated": 2353.4209728240967, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" }, { "args": [ "prot-server:", "__authentificate_create_seed__" ], - "asctime": "2021-02-28 18:59:53,938", - "created": 1614535193.9389763, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,449", + "created": 1742744818.449974, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 938.9762878417969, + "msecs": 449.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2426.543951034546, + "relativeCreated": 2353.660821914673, "stack_info": null, - "thread": 140381085574912, - "threadName": "Thread-5" + "thread": 140631282308800, + "threadName": "Thread-5 (_start)" } ], - "msecs": 327.39973068237305, + "msecs": 839.0, "msg": "Performing Authentification", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2814.967393875122, + "relativeCreated": 2743.6845302581787, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.38842344284057617 + "time_consumption": 0.39002370834350586 }, { "args": [ "False", "" ], - "asctime": "2021-02-28 18:59:54,328", - "created": 1614535194.328438, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,841", + "created": 1742744818.8411934, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Return Value of authentification method is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -178563,9 +12872,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:54,327", - "created": 1614535194.3279593, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,840", + "created": 1742744818.8406317, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -178574,72 +12882,71 @@ "lineno": 22, "message": "Result (Return Value of authentification method): False ()", "module": "test", - "msecs": 327.9592990875244, + "msecs": 840.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2815.5269622802734, + "relativeCreated": 2744.3184852600098, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Return Value of authentification method", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:54,328", - "created": 1614535194.3282251, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,840", + "created": 1742744818.840954, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Return Value of authentification method): result = False ()", "module": "test", - "msecs": 328.22513580322266, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 840.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2815.7927989959717, + "relativeCreated": 2744.640827178955, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 328.43804359436035, + "msecs": 841.0, "msg": "Return Value of authentification method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2816.0057067871094, + "relativeCreated": 2744.880199432373, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0002129077911376953 + "time_consumption": 0.00023937225341796875 }, { "args": [ "False", "" ], - "asctime": "2021-02-28 18:59:54,329", - "created": 1614535194.329076, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,841", + "created": 1742744818.8419964, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of server is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -178649,9 +12956,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:54,328", - "created": 1614535194.3287327, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,841", + "created": 1742744818.841568, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -178660,72 +12966,71 @@ "lineno": 22, "message": "Result (Authentification state of server): False ()", "module": "test", - "msecs": 328.7327289581299, + "msecs": 841.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2816.300392150879, + "relativeCreated": 2745.2547550201416, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of server", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:54,328", - "created": 1614535194.328916, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,841", + "created": 1742744818.8417907, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of server): result = False ()", "module": "test", - "msecs": 328.916072845459, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 841.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2816.483736038208, + "relativeCreated": 2745.4774379730225, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 329.07605171203613, + "msecs": 841.0, "msg": "Authentification state of server is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2816.643714904785, + "relativeCreated": 2745.683193206787, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00015997886657714844 + "time_consumption": 0.00020575523376464844 }, { "args": [ "False", "" ], - "asctime": "2021-02-28 18:59:54,329", - "created": 1614535194.329642, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,842", + "created": 1742744818.8427505, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Authentification state of client is correct (Content False and Type is ).", "module": "test", "moduleLogger": [ @@ -178735,9 +13040,8 @@ "False", "" ], - "asctime": "2021-02-28 18:59:54,329", - "created": 1614535194.3293302, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,842", + "created": 1742744818.842385, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -178746,93 +13050,91 @@ "lineno": 22, "message": "Result (Authentification state of client): False ()", "module": "test", - "msecs": 329.3302059173584, + "msecs": 842.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2816.8978691101074, + "relativeCreated": 2746.0718154907227, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Authentification state of client", + "=", "False", "" ], - "asctime": "2021-02-28 18:59:54,329", - "created": 1614535194.3294897, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,842", + "created": 1742744818.8425744, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Authentification state of client): result = False ()", "module": "test", - "msecs": 329.48970794677734, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 842.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2817.0573711395264, + "relativeCreated": 2746.2611198425293, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 329.64205741882324, + "msecs": 842.0, "msg": "Authentification state of client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 2817.2097206115723, + "relativeCreated": 2746.4373111724854, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00015234947204589844 + "time_consumption": 0.0001761913299560547 } ], - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.9715719223022461, - "time_finished": "2021-02-28 18:59:54,329", - "time_start": "2021-02-28 18:59:53,358" + "time_consumption": 0.9712889194488525, + "time_finished": "2025-03-23 16:46:58,842", + "time_start": "2025-03-23 16:46:57,871" }, - "_k-Q4EE0oEeuiHtQbLi1mZg": { + "REQ-0008": { "args": null, - "asctime": "2021-02-28 19:00:03,275", - "created": 1614535203.275139, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,558", + "created": 1742744821.5586765, "exc_text": null, "filename": "__init__.py", - "funcName": "testrun", + "funcName": "testCase", "levelname": "INFO", "levelno": 20, - "lineno": 40, - "message": "_k-Q4EE0oEeuiHtQbLi1mZg", + "lineno": 327, + "message": "REQ-0008", "module": "__init__", "moduleLogger": [], - "msecs": 275.13909339904785, - "msg": "_k-Q4EE0oEeuiHtQbLi1mZg", + "msecs": 558.0, + "msg": "REQ-0008", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11762.706756591797, + "relativeCreated": 5462.363243103027, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-02-28 19:00:03,286", - "created": 1614535203.286343, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5679014, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -178846,9 +13148,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:03,276", - "created": 1614535203.2764606, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,560", + "created": 1742744821.5602956, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -178857,24 +13158,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 276.4606475830078, + "msecs": 560.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11764.028310775757, + "relativeCreated": 5463.982343673706, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:03,277", - "created": 1614535203.2777636, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,561", + "created": 1742744821.561513, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -178883,24 +13183,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 277.76360511779785, + "msecs": 561.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11765.331268310547, + "relativeCreated": 5465.199708938599, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:03,278", - "created": 1614535203.2781055, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,561", + "created": 1742744821.5618532, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", @@ -178909,41 +13208,40 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 278.1054973602295, + "msecs": 561.0, "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11765.673160552979, + "relativeCreated": 5465.539932250977, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:03,278", - "created": 1614535203.2785187, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,562", + "created": 1742744821.5623446, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 278.5186767578125, + "msecs": 562.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11766.086339950562, + "relativeCreated": 5466.031312942505, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -178952,26 +13250,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:03,278", - "created": 1614535203.2787423, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,562", + "created": 1742744821.5626066, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 278.74231338500977, + "msecs": 562.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11766.309976577759, + "relativeCreated": 5466.2933349609375, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -178979,9 +13276,8 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:03,278", - "created": 1614535203.2789993, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,562", + "created": 1742744821.562894, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -178990,15 +13286,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 278.99932861328125, + "msecs": 562.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11766.56699180603, + "relativeCreated": 5466.580867767334, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179006,9 +13302,8 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:03,279", - "created": 1614535203.2791939, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,563", + "created": 1742744821.5631113, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179017,15 +13312,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 279.1938781738281, + "msecs": 563.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11766.761541366577, + "relativeCreated": 5466.7980670928955, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179033,9 +13328,8 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:03,279", - "created": 1614535203.2793653, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,563", + "created": 1742744821.5633118, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179044,15 +13338,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 279.36530113220215, + "msecs": 563.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11766.932964324951, + "relativeCreated": 5466.99857711792, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179060,9 +13354,8 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:03,279", - "created": 1614535203.2795274, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,563", + "created": 1742744821.5635087, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179071,15 +13364,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 279.5274257659912, + "msecs": 563.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11767.09508895874, + "relativeCreated": 5467.195510864258, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179089,26 +13382,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:03,279", - "created": 1614535203.279711, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,563", + "created": 1742744821.5637248, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 279.7110080718994, + "msecs": 563.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11767.278671264648, + "relativeCreated": 5467.411518096924, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179118,26 +13410,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:03,279", - "created": 1614535203.2798994, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,563", + "created": 1742744821.5639424, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 279.89935874938965, + "msecs": 563.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11767.467021942139, + "relativeCreated": 5467.629194259644, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179147,26 +13438,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:03,280", - "created": 1614535203.2800808, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,564", + "created": 1742744821.5641701, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 280.08079528808594, + "msecs": 564.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11767.648458480835, + "relativeCreated": 5467.856884002686, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179176,52 +13466,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:03,280", - "created": 1614535203.280257, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,564", + "created": 1742744821.5643904, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 280.256986618042, + "msecs": 564.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11767.824649810791, + "relativeCreated": 5468.077182769775, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:03,280", - "created": 1614535203.280414, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,564", + "created": 1742744821.5645876, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 280.4141044616699, + "msecs": 564.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11767.981767654419, + "relativeCreated": 5468.274354934692, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179230,26 +13518,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:03,280", - "created": 1614535203.2806032, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,564", + "created": 1742744821.56479, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 280.60317039489746, + "msecs": 564.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11768.170833587646, + "relativeCreated": 5468.47677230835, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179257,9 +13544,8 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:03,280", - "created": 1614535203.280804, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,565", + "created": 1742744821.5650074, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179268,15 +13554,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 280.803918838501, + "msecs": 565.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11768.37158203125, + "relativeCreated": 5468.69421005249, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179284,9 +13570,8 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:03,280", - "created": 1614535203.2809732, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,565", + "created": 1742744821.5652006, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179295,15 +13580,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 280.9731960296631, + "msecs": 565.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11768.540859222412, + "relativeCreated": 5468.8873291015625, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179313,26 +13598,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:03,281", - "created": 1614535203.2811663, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,565", + "created": 1742744821.5654056, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 281.16631507873535, + "msecs": 565.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11768.733978271484, + "relativeCreated": 5469.09236907959, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179342,26 +13626,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:03,281", - "created": 1614535203.2813458, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,565", + "created": 1742744821.565626, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 281.3458442687988, + "msecs": 565.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11768.913507461548, + "relativeCreated": 5469.31266784668, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179370,26 +13653,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:03,281", - "created": 1614535203.2815168, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,565", + "created": 1742744821.5658212, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 281.51679039001465, + "msecs": 565.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11769.084453582764, + "relativeCreated": 5469.507932662964, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179398,26 +13680,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:03,281", - "created": 1614535203.2816985, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,566", + "created": 1742744821.5660079, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 281.69846534729004, + "msecs": 566.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11769.266128540039, + "relativeCreated": 5469.6946144104, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179426,78 +13707,75 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:03,281", - "created": 1614535203.2818627, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,566", + "created": 1742744821.5662239, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 281.862735748291, + "msecs": 566.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11769.43039894104, + "relativeCreated": 5469.910621643066, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:03,282", - "created": 1614535203.282037, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,566", + "created": 1742744821.5664217, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 282.03701972961426, + "msecs": 566.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11769.604682922363, + "relativeCreated": 5470.108509063721, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:03,282", - "created": 1614535203.282359, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,566", + "created": 1742744821.5667439, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 282.35888481140137, + "msecs": 566.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11769.92654800415, + "relativeCreated": 5470.430612564087, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179506,26 +13784,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:03,282", - "created": 1614535203.2825565, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,566", + "created": 1742744821.5668027, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 282.55653381347656, + "msecs": 566.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11770.124197006226, + "relativeCreated": 5470.489501953125, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179533,9 +13810,8 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:03,282", - "created": 1614535203.2827816, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,566", + "created": 1742744821.5668783, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179544,15 +13820,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 282.78160095214844, + "msecs": 566.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11770.349264144897, + "relativeCreated": 5470.5650806427, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179560,9 +13836,8 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:03,282", - "created": 1614535203.282967, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,566", + "created": 1742744821.5669355, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179571,15 +13846,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 282.96709060668945, + "msecs": 566.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11770.534753799438, + "relativeCreated": 5470.622301101685, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179587,9 +13862,8 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:03,283", - "created": 1614535203.2831306, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,566", + "created": 1742744821.5669906, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179598,15 +13872,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 283.1306457519531, + "msecs": 566.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11770.698308944702, + "relativeCreated": 5470.677375793457, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179614,9 +13888,8 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:03,283", - "created": 1614535203.2832897, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.567046, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179625,15 +13898,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 283.28967094421387, + "msecs": 567.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11770.857334136963, + "relativeCreated": 5470.732688903809, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179643,26 +13916,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:03,283", - "created": 1614535203.283462, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5671077, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 283.4620475769043, + "msecs": 567.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11771.029710769653, + "relativeCreated": 5470.794439315796, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179672,26 +13944,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:03,283", - "created": 1614535203.2836385, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5671675, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 283.63847732543945, + "msecs": 567.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11771.206140518188, + "relativeCreated": 5470.85428237915, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179701,26 +13972,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:03,283", - "created": 1614535203.2838137, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5672271, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 283.8137149810791, + "msecs": 567.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11771.381378173828, + "relativeCreated": 5470.913887023926, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179730,52 +14000,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:03,283", - "created": 1614535203.2839856, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5672882, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 283.9856147766113, + "msecs": 567.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11771.55327796936, + "relativeCreated": 5470.974922180176, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:03,284", - "created": 1614535203.2841368, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5673409, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 284.1367721557617, + "msecs": 567.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11771.70443534851, + "relativeCreated": 5471.027612686157, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179784,26 +14052,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:03,284", - "created": 1614535203.284331, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.567397, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 284.3310832977295, + "msecs": 567.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11771.898746490479, + "relativeCreated": 5471.083879470825, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179811,9 +14078,8 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:03,284", - "created": 1614535203.2845182, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5674574, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179822,15 +14088,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 284.5182418823242, + "msecs": 567.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11772.085905075073, + "relativeCreated": 5471.144199371338, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179838,9 +14104,8 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:03,284", - "created": 1614535203.284684, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5675125, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -179849,15 +14114,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 284.6839427947998, + "msecs": 567.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11772.251605987549, + "relativeCreated": 5471.19927406311, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179867,26 +14132,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:03,284", - "created": 1614535203.284874, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5675726, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 284.87396240234375, + "msecs": 567.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11772.441625595093, + "relativeCreated": 5471.259355545044, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179896,26 +14160,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:03,285", - "created": 1614535203.2854803, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5676303, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 285.480260848999, + "msecs": 567.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11773.047924041748, + "relativeCreated": 5471.3170528411865, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179924,26 +14187,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:03,285", - "created": 1614535203.2856874, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5676854, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 285.6874465942383, + "msecs": 567.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11773.255109786987, + "relativeCreated": 5471.372127532959, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179952,26 +14214,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:03,285", - "created": 1614535203.2858615, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5677412, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 285.8614921569824, + "msecs": 567.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11773.429155349731, + "relativeCreated": 5471.427917480469, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -179980,72 +14241,69 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:03,286", - "created": 1614535203.2860231, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5677948, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 286.0231399536133, + "msecs": 567.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11773.590803146362, + "relativeCreated": 5471.481561660767, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:03,286", - "created": 1614535203.286186, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,567", + "created": 1742744821.5678468, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 286.18597984313965, + "msecs": 567.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11773.753643035889, + "relativeCreated": 5471.533536911011, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 286.3430976867676, + "msecs": 567.0, "msg": "Setting up communication", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11773.910760879517, + "relativeCreated": 5471.588134765625, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001571178436279297 + "time_consumption": 5.459785461425781e-05 }, { "args": [], - "asctime": "2021-02-28 19:00:03,631", - "created": 1614535203.6318653, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,911", + "created": 1742744821.9115126, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -180059,9 +14317,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:03,286", - "created": 1614535203.2866852, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,568", + "created": 1742744821.5680285, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -180070,24 +14327,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 286.6852283477783, + "msecs": 568.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11774.252891540527, + "relativeCreated": 5471.715211868286, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:03,286", - "created": 1614535203.2868583, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,568", + "created": 1742744821.568084, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -180096,41 +14352,40 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 286.85832023620605, + "msecs": 568.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11774.425983428955, + "relativeCreated": 5471.770763397217, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:03,287", - "created": 1614535203.2870476, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,568", + "created": 1742744821.568139, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 287.0476245880127, + "msecs": 568.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11774.615287780762, + "relativeCreated": 5471.825838088989, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -180141,35 +14396,33 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:03,287", - "created": 1614535203.2873292, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,568", + "created": 1742744821.5682316, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 287.32919692993164, + "msecs": 568.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11774.89686012268, + "relativeCreated": 5471.918344497681, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:03,287", - "created": 1614535203.2879696, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,568", + "created": 1742744821.5684395, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -180178,24 +14431,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 287.96958923339844, + "msecs": 568.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11775.537252426147, + "relativeCreated": 5472.126245498657, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:03,288", - "created": 1614535203.288167, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,568", + "created": 1742744821.5684981, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -180204,41 +14456,40 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 288.16699981689453, + "msecs": 568.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11775.734663009644, + "relativeCreated": 5472.184896469116, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:03,288", - "created": 1614535203.2883363, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,568", + "created": 1742744821.5685544, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 288.33627700805664, + "msecs": 568.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11775.903940200806, + "relativeCreated": 5472.241163253784, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -180246,9 +14497,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:03,288", - "created": 1614535203.2888951, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,568", + "created": 1742744821.5688088, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -180257,25 +14507,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 288.8951301574707, + "msecs": 568.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11776.46279335022, + "relativeCreated": 5472.495555877686, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:03,297", - "created": 1614535203.2975442, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,577", + "created": 1742744821.577031, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -180284,300 +14533,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 297.5442409515381, + "msecs": 577.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11785.111904144287, + "relativeCreated": 5480.717658996582, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,297", - "created": 1614535203.2979183, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 297.91831970214844, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11785.485982894897, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:03,298", - "created": 1614535203.2981272, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 298.1271743774414, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11785.69483757019, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,298", - "created": 1614535203.2983325, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 298.33245277404785, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11785.900115966797, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,298", - "created": 1614535203.2984774, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 298.4774112701416, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11786.04507446289, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,298", - "created": 1614535203.2986963, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 298.69627952575684, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11786.263942718506, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,298", - "created": 1614535203.2988448, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 298.8448143005371, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11786.412477493286, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,299", - "created": 1614535203.299046, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 299.0460395812988, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11786.613702774048, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,299", - "created": 1614535203.2992098, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 299.2098331451416, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11786.77749633789, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,299", - "created": 1614535203.299411, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 299.4110584259033, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11786.978721618652, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,299", - "created": 1614535203.2995648, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 299.5648384094238, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11787.132501602173, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" }, { "args": [ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:03,299", - "created": 1614535203.299839, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,577", + "created": 1742744821.5773602, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -180586,25 +14559,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 299.8390197753906, + "msecs": 577.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11787.40668296814, + "relativeCreated": 5481.046915054321, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" }, { "args": [ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:03,301", - "created": 1614535203.3010998, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,578", + "created": 1742744821.5782585, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -180613,98 +14585,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 301.0997772216797, + "msecs": 578.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11788.667440414429, + "relativeCreated": 5481.945276260376, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,301", - "created": 1614535203.301415, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 301.41496658325195, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11788.982629776001, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:03,301", - "created": 1614535203.301589, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 301.5890121459961, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11789.156675338745, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:03,301", - "created": 1614535203.3019063, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 301.9063472747803, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11789.47401046753, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" }, { "args": [ @@ -180714,54 +14604,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:03,302", - "created": 1614535203.3022976, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,578", + "created": 1742744821.578511, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 302.29759216308594, + "msecs": 578.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11789.865255355835, + "relativeCreated": 5482.1977615356445, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" }, { "args": [ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-02-28 19:00:03,302", - "created": 1614535203.3024914, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,578", + "created": 1742744821.5785997, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 302.4914264678955, + "msecs": 578.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11790.059089660645, + "relativeCreated": 5482.28645324707, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" }, { "args": [ @@ -180771,36 +14659,34 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:03,302", - "created": 1614535203.3028214, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,578", + "created": 1742744821.5787144, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 302.82139778137207, + "msecs": 578.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11790.389060974121, + "relativeCreated": 5482.401132583618, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:03,304", - "created": 1614535203.3040388, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,579", + "created": 1742744821.5790222, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -180809,25 +14695,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 304.03876304626465, + "msecs": 579.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11791.606426239014, + "relativeCreated": 5482.708930969238, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:03,312", - "created": 1614535203.3125343, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,587", + "created": 1742744821.5872617, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -180836,300 +14721,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 312.5343322753906, + "msecs": 587.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11800.10199546814, + "relativeCreated": 5490.948438644409, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,312", - "created": 1614535203.3128722, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 312.87217140197754, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11800.439834594727, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:03,313", - "created": 1614535203.3130536, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 313.0536079406738, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11800.621271133423, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,313", - "created": 1614535203.313298, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 313.29798698425293, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11800.865650177002, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,313", - "created": 1614535203.3134482, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 313.4481906890869, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11801.015853881836, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,313", - "created": 1614535203.3136969, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 313.69686126708984, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11801.264524459839, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,313", - "created": 1614535203.3138528, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 313.85278701782227, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11801.420450210571, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,314", - "created": 1614535203.314044, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 314.0439987182617, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11801.61166191101, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,314", - "created": 1614535203.3141828, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 314.1827583312988, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11801.750421524048, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,314", - "created": 1614535203.314369, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 314.36896324157715, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11801.936626434326, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,314", - "created": 1614535203.314525, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 314.52488899230957, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11802.092552185059, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" }, { "args": [ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:03,314", - "created": 1614535203.3147998, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,587", + "created": 1742744821.5876641, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -181138,25 +14747,24 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 314.7997856140137, + "msecs": 587.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11802.367448806763, + "relativeCreated": 5491.350889205933, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" }, { "args": [ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:03,315", - "created": 1614535203.315951, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,588", + "created": 1742744821.5886862, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -181165,98 +14773,16 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 315.9511089324951, + "msecs": 588.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11803.518772125244, + "relativeCreated": 5492.372989654541, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,316", - "created": 1614535203.3162837, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 316.2837028503418, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11803.85136604309, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:03,316", - "created": 1614535203.3164678, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 316.4677619934082, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11804.035425186157, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:03,316", - "created": 1614535203.3167543, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 316.7543411254883, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 11804.322004318237, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" }, { "args": [ @@ -181266,73 +14792,15013 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:03,317", - "created": 1614535203.3171842, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,589", + "created": 1742744821.589056, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 317.1842098236084, + "msecs": 589.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11804.751873016357, + "relativeCreated": 5492.7427768707275, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" }, { "args": [ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-02-28 19:00:03,317", - "created": 1614535203.3173993, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,589", + "created": 1742744821.5891876, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 317.399263381958, + "msecs": 589.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 11804.966926574707, + "relativeCreated": 5492.874383926392, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" } ], - "msecs": 631.8652629852295, + "msecs": 911.0, "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12119.432926177979, + "relativeCreated": 5815.199375152588, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.3144659996032715 + "time_consumption": 0.3223249912261963 }, { "args": [], - "asctime": "2021-02-28 19:00:03,935", - "created": 1614535203.935116, - "exc_info": null, + "asctime": "2025-03-23 16:47:01,912", + "created": 1742744821.912154, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 150, + "message": "Setting a Server secret and no Client secret", + "module": "test_communication", + "moduleLogger": [], + "msecs": 912.0, + "msg": "Setting a Server secret and no Client secret", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5815.840721130371, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:02,114", + "created": 1742744822.114133, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 153, + "message": "Transfering a message client -> server", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: execute request, data_id: 36", + "status: okay", + "'msg3_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:01,912", + "created": 1742744821.9126875, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 912.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5816.3743019104, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:01,913", + "created": 1742744821.9139621, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 913.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5817.648887634277, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:01,922", + "created": 1742744821.922871, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 922.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5826.557874679565, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,923", + "created": 1742744821.9237702, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e", + "module": "__init__", + "msecs": 923.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5827.456951141357, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,928", + "created": 1742744821.9283962, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 33 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 13 e9 64 3d 3a 3e", + "module": "__init__", + "msecs": 928.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5832.082986831665, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: execute request, data_id: 36", + "status: okay", + "'msg3_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:01,929", + "created": 1742744821.929568, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: execute request, data_id: 36, status: okay, data: \"'msg3_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 929.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5833.254814147949, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:01,929", + "created": 1742744821.9298332, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 467, + "message": "prot-server: Authentification is required. Just sending negative response.", + "module": "__init__", + "msecs": 929.0, + "msg": "%s Authentification is required. Just sending negative response.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5833.51993560791, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: execute response, data_id: 36", + "status: authentification required", + "None" + ], + "asctime": "2025-03-23 16:47:01,930", + "created": 1742744821.9302456, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 445, + "message": "prot-server: TX -> service: execute response, data_id: 36, status: authentification required, data: \"None\"", + "module": "__init__", + "msecs": 930.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5833.932399749756, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" + ], + "asctime": "2025-03-23 16:47:01,931", + "created": 1742744821.9310617, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", + "module": "__init__", + "msecs": 931.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5834.7485065460205, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" + ], + "asctime": "2025-03-23 16:47:01,939", + "created": 1742744821.9395292, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 36 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 33 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 33 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", + "module": "__init__", + "msecs": 939.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5843.2159423828125, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-server:", + "(8): 6c 7d 5d 78 af a4 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,939", + "created": 1742744821.9398777, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (8): 6c 7d 5d 78 af a4 3a 3e", + "module": "__init__", + "msecs": 939.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5843.564510345459, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(8): 6c 7d 5d 78 af a4 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,941", + "created": 1742744821.9411252, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (8): 6c 7d 5d 78 af a4 3a 3e", + "module": "__init__", + "msecs": 941.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5844.811916351318, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: execute response, data_id: 36", + "status: authentification required", + "None" + ], + "asctime": "2025-03-23 16:47:01,941", + "created": 1742744821.941443, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 445, + "message": "prot-client: RX <- service: execute response, data_id: 36, status: authentification required, data: \"None\"", + "module": "__init__", + "msecs": 941.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5845.129728317261, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:01,941", + "created": 1742744821.941567, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 941.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5845.253705978394, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + } + ], + "msecs": 114.0, + "msg": "Transfering a message client -> server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6017.81964302063, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.17256593704223633 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:02,115", + "created": 1742744822.1151822, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Client send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:02,114", + "created": 1742744822.1147504, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Client send Method): True ()", + "module": "test", + "msecs": 114.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6018.437147140503, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Client send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:02,114", + "created": 1742744822.1149821, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Client send Method): result = True ()", + "module": "test", + "msecs": 114.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6018.66888999939, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 115.0, + "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6018.868923187256, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00020003318786621094 + }, + { + "args": [ + "{'data_id': 36, 'service_id': 31, 'status': 3, 'data': None}", + "" + ], + "asctime": "2025-03-23 16:47:02,115", + "created": 1742744822.1159241, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on server side is correct (Content {'data_id': 36, 'service_id': 31, 'status': 3, 'data': None} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on server side", + "{'data_id': 36, 'service_id': 31, 'status': 3, 'data': None}", + "" + ], + "asctime": "2025-03-23 16:47:02,115", + "created": 1742744822.1155028, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on server side): {'data_id': 36, 'service_id': 31, 'status': 3, 'data': None} ()", + "module": "test", + "msecs": 115.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6019.1895961761475, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on server side", + "=", + "{'service_id': 31, 'data_id': 36, 'status': 3, 'data': None}", + "" + ], + "asctime": "2025-03-23 16:47:02,115", + "created": 1742744822.115705, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on server side): result = {'service_id': 31, 'data_id': 36, 'status': 3, 'data': None} ()", + "module": "test", + "msecs": 115.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6019.391775131226, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 115.0, + "msg": "Received message on server side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6019.61088180542, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00021910667419433594 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:02,116", + "created": 1742744822.1162124, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 159, + "message": "Setting no Server secret but a Client secret", + "module": "test_communication", + "moduleLogger": [], + "msecs": 116.0, + "msg": "Setting no Server secret but a Client secret", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6019.899129867554, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:02,419", + "created": 1742744822.4193213, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 162, + "message": "Transfering a message server -> client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "TX ->", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:02,116", + "created": 1742744822.1166346, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 116.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6020.321369171143, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:02,117", + "created": 1742744822.1176836, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 117.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6021.370410919189, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:02,126", + "created": 1742744822.126546, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 126.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6030.232667922974, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2025-03-23 16:47:02,127", + "created": 1742744822.127439, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 127.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6031.125783920288, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2025-03-23 16:47:02,131", + "created": 1742744822.1319227, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 131.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6035.609483718872, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:02,132", + "created": 1742744822.132973, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 132.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6036.659717559814, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:02,133", + "created": 1742744822.1332393, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 472, + "message": "prot-client: Authentification is required. Incomming message will be ignored.", + "module": "__init__", + "msecs": 133.0, + "msg": "%s Authentification is required. Incomming message will be ignored.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6036.926031112671, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "0.28705533596837945", + "17", + "35" + ], + "asctime": "2025-03-23 16:47:02,418", + "created": 1742744822.4189234, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 687, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "module": "__init__", + "msecs": 418.0, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6322.610139846802, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 419.0, + "msg": "Transfering a message server -> client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6323.008060455322, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0003979206085205078 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:02,420", + "created": 1742744822.4203172, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Server send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:02,419", + "created": 1742744822.4198394, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Server send Method): True ()", + "module": "test", + "msecs": 419.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6323.52614402771, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Server send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:02,420", + "created": 1742744822.4200926, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Server send Method): result = True ()", + "module": "test", + "msecs": 420.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6323.779344558716, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 420.0, + "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6324.0039348602295, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00022459030151367188 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:02,421", + "created": 1742744822.4211004, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on client side is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on client side", + "None", + "" + ], + "asctime": "2025-03-23 16:47:02,420", + "created": 1742744822.4206617, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on client side): None ()", + "module": "test", + "msecs": 420.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6324.348449707031, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on client side", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:02,420", + "created": 1742744822.4208775, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on client side): result = None ()", + "module": "test", + "msecs": 420.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6324.564218521118, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 421.0, + "msg": "Received message on client side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6324.787139892578, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00022292137145996094 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:02,421", + "created": 1742744822.4214194, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 168, + "message": "Identical secrets set", + "module": "test_communication", + "moduleLogger": [], + "msecs": 421.0, + "msg": "Identical secrets set", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6325.106143951416, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:02,723", + "created": 1742744822.7234166, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 171, + "message": "Transfering a message client -> server", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:02,421", + "created": 1742744822.4217002, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "WARNING", + "levelno": 30, + "lineno": 756, + "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", + "module": "__init__", + "msecs": 421.0, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6325.387001037598, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "0.28705533596837945", + "17", + "34" + ], + "asctime": "2025-03-23 16:47:02,723", + "created": 1742744822.7230217, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 687, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "module": "__init__", + "msecs": 723.0, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6626.708507537842, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 723.0, + "msg": "Transfering a message client -> server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6627.103328704834, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0003948211669921875 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:02,724", + "created": 1742744822.724243, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Client send Method is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Client send Method", + "False", + "" + ], + "asctime": "2025-03-23 16:47:02,723", + "created": 1742744822.7238264, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Client send Method): False ()", + "module": "test", + "msecs": 723.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6627.51317024231, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Client send Method", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:02,724", + "created": 1742744822.724048, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Client send Method): result = False ()", + "module": "test", + "msecs": 724.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6627.734661102295, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 724.0, + "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6627.9296875, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00019502639770507812 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:02,724", + "created": 1742744822.724916, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on server side is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on server side", + "None", + "" + ], + "asctime": "2025-03-23 16:47:02,724", + "created": 1742744822.7245457, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on server side): None ()", + "module": "test", + "msecs": 724.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6628.232479095459, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on server side", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:02,724", + "created": 1742744822.7247372, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on server side): result = None ()", + "module": "test", + "msecs": 724.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6628.4239292144775, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 724.0, + "msg": "Received message on server side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6628.602743148804, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00017881393432617188 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:03,027", + "created": 1742744823.0275054, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 177, + "message": "Transfering a message server -> client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:02,725", + "created": 1742744822.72529, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "WARNING", + "levelno": 30, + "lineno": 756, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "module": "__init__", + "msecs": 725.0, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6628.976821899414, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "0.28705533596837945", + "17", + "35" + ], + "asctime": "2025-03-23 16:47:03,027", + "created": 1742744823.0271108, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 687, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "module": "__init__", + "msecs": 27.0, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6930.797576904297, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 27.0, + "msg": "Transfering a message server -> client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6931.19215965271, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00039458274841308594 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:03,028", + "created": 1742744823.0284214, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Server send Method", + "False", + "" + ], + "asctime": "2025-03-23 16:47:03,027", + "created": 1742744823.0279565, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Server send Method): False ()", + "module": "test", + "msecs": 27.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6931.64324760437, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Server send Method", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:03,028", + "created": 1742744823.028201, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Server send Method): result = False ()", + "module": "test", + "msecs": 28.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6931.887865066528, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 28.0, + "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6932.108163833618, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00022029876708984375 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:03,029", + "created": 1742744823.02925, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on client side is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on client side", + "None", + "" + ], + "asctime": "2025-03-23 16:47:03,028", + "created": 1742744823.0287626, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on client side): None ()", + "module": "test", + "msecs": 28.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6932.4493408203125, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on client side", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:03,029", + "created": 1742744823.029023, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on client side): result = None ()", + "module": "test", + "msecs": 29.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6932.709693908691, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 29.0, + "msg": "Received message on client side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6932.936668395996, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002269744873046875 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:03,131", + "created": 1742744823.1310656, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 182, + "message": "Performing Authentification", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: authentification request, data_id: seed", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:03,029", + "created": 1742744823.0297399, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 29.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6933.42661857605, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:03,030", + "created": 1742744823.030873, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 30.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6934.5598220825195, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:03,039", + "created": 1742744823.0394993, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 39.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6943.186044692993, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,040", + "created": 1742744823.0403643, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 40.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6944.051027297974, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,041", + "created": 1742744823.0415921, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 41.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6945.278882980347, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: seed", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:03,042", + "created": 1742744823.0424068, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 42.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6946.093559265137, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "__authentificate_create_seed__" + ], + "asctime": "2025-03-23 16:47:03,042", + "created": 1742744823.0426865, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", + "module": "__init__", + "msecs": 42.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6946.373224258423, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: authentification response, data_id: seed", + "status: okay", + "'0bd0e2cc2069395cebe88c192a41001e87e98f0e95c99ff45eb1806ccdf78aee'" + ], + "asctime": "2025-03-23 16:47:03,043", + "created": 1742744823.0431416, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'0bd0e2cc2069395cebe88c192a41001e87e98f0e95c99ff45eb1806ccdf78aee'\"", + "module": "__init__", + "msecs": 43.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6946.828365325928, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 62 64 30" + ], + "asctime": "2025-03-23 16:47:03,044", + "created": 1742744823.04495, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 62 64 30", + "module": "__init__", + "msecs": 44.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6948.636770248413, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 62 64 30" + ], + "asctime": "2025-03-23 16:47:03,053", + "created": 1742744823.0534806, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 30 62 64 30", + "module": "__init__", + "msecs": 53.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6957.167387008667, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 65 32 63 63 32 30 36 39 33 39 35 63 65 62 65 38 38 63 31 39 32 61 34 31 30 30 31 65 38 37 65 39 38 66 30 65 39 35 63 39 39 66 66 34 35 65 62 31 38 30 36 63 63 64 66 37 38 61 65 65 22 7d 08 ee" + ], + "asctime": "2025-03-23 16:47:03,054", + "created": 1742744823.054301, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 65 32 63 63 32 30 36 39 33 39 35 63 65 62 65 38 38 63 31 39 32 61 34 31 30 30 31 65 38 37 65 39 38 66 30 65 39 35 63 39 39 66 66 34 35 65 62 31 38 30 36 63 63 64 66 37 38 61 65 65 22 7d 08 ee", + "module": "__init__", + "msecs": 54.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6957.9877853393555, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 65 32 63 63 32 30 36 39 33 39 35 63 65 62 65 38 38 63 31 39 32 61 34 31 30 30 31 65 38 37 65 39 38 66 30 65 39 35 63 39 39 66 66 34 35 65 62 31 38 30 36 63 63 64 66 37 38 61 65 65 22 7d 08 ee" + ], + "asctime": "2025-03-23 16:47:03,062", + "created": 1742744823.0627754, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 65 32 63 63 32 30 36 39 33 39 35 63 65 62 65 38 38 63 31 39 32 61 34 31 30 30 31 65 38 37 65 39 38 66 30 65 39 35 63 39 39 66 66 34 35 65 62 31 38 30 36 63 63 64 66 37 38 61 65 65 22 7d 08 ee", + "module": "__init__", + "msecs": 62.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6966.462135314941, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-server:", + "(4): 07 8b 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,063", + "created": 1742744823.0634408, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): 07 8b 3a 3e", + "module": "__init__", + "msecs": 63.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6967.127561569214, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(4): 07 8b 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,064", + "created": 1742744823.0643284, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): 07 8b 3a 3e", + "module": "__init__", + "msecs": 64.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6968.015193939209, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "'0bd0e2cc2069395cebe88c192a41001e87e98f0e95c99ff45eb1806ccdf78aee'" + ], + "asctime": "2025-03-23 16:47:03,065", + "created": 1742744823.0651488, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'0bd0e2cc2069395cebe88c192a41001e87e98f0e95c99ff45eb1806ccdf78aee'\"", + "module": "__init__", + "msecs": 65.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6968.8355922698975, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "__authentificate_create_key__" + ], + "asctime": "2025-03-23 16:47:03,065", + "created": 1742744823.0654094, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", + "module": "__init__", + "msecs": 65.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6969.0961837768555, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: authentification request, data_id: key", + "status: okay", + "'22df2547b66672daa68554babb89a4144f4edf8a0bb6c6e1ea7124567b203e2edf962715a1a3ca50de2e63ddff2e055883bd800936f76a935b7d68c14f6c9c3c'" + ], + "asctime": "2025-03-23 16:47:03,065", + "created": 1742744823.0657415, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'22df2547b66672daa68554babb89a4144f4edf8a0bb6c6e1ea7124567b203e2edf962715a1a3ca50de2e63ddff2e055883bd800936f76a935b7d68c14f6c9c3c'\"", + "module": "__init__", + "msecs": 65.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6969.428300857544, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 32 64 66" + ], + "asctime": "2025-03-23 16:47:03,066", + "created": 1742744823.0669644, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 32 64 66", + "module": "__init__", + "msecs": 66.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6970.651149749756, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 32 64 66" + ], + "asctime": "2025-03-23 16:47:03,075", + "created": 1742744823.0755527, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 32 64 66", + "module": "__init__", + "msecs": 75.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6979.239463806152, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 32 35 34 37 62 36 36 36 37 32 64 61 61 36 38 35 35 34 62 61 62 62 38 39 61 34 31 34 34 66 34 65 64 66 38 61 30 62 62 36 63 36 65 31 65 61 37 31 32 34 35 36 37 62 32 30 33 65 32 65 64 66 39 36" + ], + "asctime": "2025-03-23 16:47:03,076", + "created": 1742744823.0763962, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 32 35 34 37 62 36 36 36 37 32 64 61 61 36 38 35 35 34 62 61 62 62 38 39 61 34 31 34 34 66 34 65 64 66 38 61 30 62 62 36 63 36 65 31 65 61 37 31 32 34 35 36 37 62 32 30 33 65 32 65 64 66 39 36", + "module": "__init__", + "msecs": 76.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6980.082988739014, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 32 35 34 37 62 36 36 36 37 32 64 61 61 36 38 35 35 34 62 61 62 62 38 39 61 34 31 34 34 66 34 65 64 66 38 61 30 62 62 36 63 36 65 31 65 61 37 31 32 34 35 36 37 62 32 30 33 65 32 65 64 66 39 36" + ], + "asctime": "2025-03-23 16:47:03,084", + "created": 1742744823.0849254, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 32 35 34 37 62 36 36 36 37 32 64 61 61 36 38 35 35 34 62 61 62 62 38 39 61 34 31 34 34 66 34 65 64 66 38 61 30 62 62 36 63 36 65 31 65 61 37 31 32 34 35 36 37 62 32 30 33 65 32 65 64 66 39 36", + "module": "__init__", + "msecs": 84.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6988.612174987793, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 32 37 31 35 61 31 61 33 63 61 35 30 64 65 32 65 36 33 64 64 66 66 32 65 30 35 35 38 38 33 62 64 38 30 30 39 33 36 66 37 36 61 39 33 35 62 37 64 36 38 63 31 34 66 36 63 39 63 33 63 22 7d a8 eb" + ], + "asctime": "2025-03-23 16:47:03,085", + "created": 1742744823.0858233, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 32 37 31 35 61 31 61 33 63 61 35 30 64 65 32 65 36 33 64 64 66 66 32 65 30 35 35 38 38 33 62 64 38 30 30 39 33 36 66 37 36 61 39 33 35 62 37 64 36 38 63 31 34 66 36 63 39 63 33 63 22 7d a8 eb", + "module": "__init__", + "msecs": 85.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6989.510059356689, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 32 37 31 35 61 31 61 33 63 61 35 30 64 65 32 65 36 33 64 64 66 66 32 65 30 35 35 38 38 33 62 64 38 30 30 39 33 36 66 37 36 61 39 33 35 62 37 64 36 38 63 31 34 66 36 63 39 63 33 63 22 7d a8 eb" + ], + "asctime": "2025-03-23 16:47:03,094", + "created": 1742744823.0945044, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 32 37 31 35 61 31 61 33 63 61 35 30 64 65 32 65 36 33 64 64 66 66 32 65 30 35 35 38 38 33 62 64 38 30 30 39 33 36 66 37 36 61 39 33 35 62 37 64 36 38 63 31 34 66 36 63 39 63 33 63 22 7d a8 eb", + "module": "__init__", + "msecs": 94.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6998.191118240356, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-client:", + "(4): 03 85 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,095", + "created": 1742744823.095288, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): 03 85 3a 3e", + "module": "__init__", + "msecs": 95.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6998.974800109863, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(4): 03 85 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,096", + "created": 1742744823.096232, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): 03 85 3a 3e", + "module": "__init__", + "msecs": 96.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 6999.918699264526, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "'22df2547b66672daa68554babb89a4144f4edf8a0bb6c6e1ea7124567b203e2edf962715a1a3ca50de2e63ddff2e055883bd800936f76a935b7d68c14f6c9c3c'" + ], + "asctime": "2025-03-23 16:47:03,097", + "created": 1742744823.0973384, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'22df2547b66672daa68554babb89a4144f4edf8a0bb6c6e1ea7124567b203e2edf962715a1a3ca50de2e63ddff2e055883bd800936f76a935b7d68c14f6c9c3c'\"", + "module": "__init__", + "msecs": 97.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7001.025199890137, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "__authentificate_check_key__" + ], + "asctime": "2025-03-23 16:47:03,097", + "created": 1742744823.0976336, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", + "module": "__init__", + "msecs": 97.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7001.320362091064, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2025-03-23 16:47:03,098", + "created": 1742744823.0980413, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 98.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7001.728057861328, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2025-03-23 16:47:03,099", + "created": 1742744823.0990238, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 99.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7002.710580825806, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2025-03-23 16:47:03,107", + "created": 1742744823.1076512, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 107.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7011.337995529175, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,108", + "created": 1742744823.108487, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 108.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7012.173652648926, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,109", + "created": 1742744823.1097043, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 109.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7013.391017913818, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2025-03-23 16:47:03,110", + "created": 1742744823.1105485, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 110.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7014.235258102417, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2025-03-23 16:47:03,110", + "created": 1742744823.1108084, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 110.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7014.495134353638, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:03,111", + "created": 1742744823.1110003, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentificate_process_feedback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 370, + "message": "prot-client: Got positive authentification feedback", + "module": "__init__", + "msecs": 111.0, + "msg": "%s Got positive authentification feedback", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7014.687061309814, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + } + ], + "msecs": 131.0, + "msg": "Performing Authentification", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7034.752368927002, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0200653076171875 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:03,333", + "created": 1742744823.3335283, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 185, + "message": "Transfering a message client -> server", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:03,131", + "created": 1742744823.1318712, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 131.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7035.557985305786, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:03,132", + "created": 1742744823.1329648, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 132.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7036.651611328125, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:03,141", + "created": 1742744823.1417894, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 141.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7045.476198196411, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,142", + "created": 1742744823.1427367, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 142.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7046.423435211182, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,147", + "created": 1742744823.147307, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 147.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7050.9936809539795, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:03,148", + "created": 1742744823.1483543, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 148.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7052.041053771973, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:03,148", + "created": 1742744823.1487112, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 148.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7052.397966384888, + "stack_info": null, + "thread": 140630776866496, + "threadName": "Thread-9 (_start)" + } + ], + "msecs": 333.0, + "msg": "Transfering a message client -> server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7237.215042114258, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.18481707572937012 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:03,334", + "created": 1742744823.3346827, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Client send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:03,334", + "created": 1742744823.3342073, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Client send Method): True ()", + "module": "test", + "msecs": 334.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7237.894058227539, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Client send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:03,334", + "created": 1742744823.3344617, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Client send Method): result = True ()", + "module": "test", + "msecs": 334.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7238.14845085144, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 334.0, + "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7238.369464874268, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00022101402282714844 + }, + { + "args": [ + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:03,335", + "created": 1742744823.3354104, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on server side", + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:03,335", + "created": 1742744823.3350136, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", + "module": "test", + "msecs": 335.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7238.700389862061, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on server side", + "=", + "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:03,335", + "created": 1742744823.3352172, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", + "module": "test", + "msecs": 335.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7238.903999328613, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 335.0, + "msg": "Received message on server side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7239.097118377686, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00019311904907226562 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:03,537", + "created": 1742744823.5374894, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "blocked_communication_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 191, + "message": "Transfering a message server -> client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "TX ->", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:03,335", + "created": 1742744823.3358545, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 335.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7239.541292190552, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:03,336", + "created": 1742744823.336914, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 336.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7240.600824356079, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:03,345", + "created": 1742744823.3456295, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 345.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7249.316215515137, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,346", + "created": 1742744823.3465717, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 346.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7250.258445739746, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,351", + "created": 1742744823.3511486, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 351.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7254.835367202759, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:03,352", + "created": 1742744823.352205, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 352.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7255.891799926758, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:03,352", + "created": 1742744823.352535, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 352.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7256.221771240234, + "stack_info": null, + "thread": 140630768473792, + "threadName": "Thread-10 (_start)" + } + ], + "msecs": 537.0, + "msg": "Transfering a message server -> client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7441.176176071167, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.18495440483093262 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:03,538", + "created": 1742744823.5387294, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Server send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:03,538", + "created": 1742744823.5382013, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Server send Method): True ()", + "module": "test", + "msecs": 538.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7441.888093948364, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Server send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:03,538", + "created": 1742744823.5384972, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Server send Method): result = True ()", + "module": "test", + "msecs": 538.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7442.183971405029, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 538.0, + "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7442.416191101074, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00023221969604492188 + }, + { + "args": [ + "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:03,540", + "created": 1742744823.5400674, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on client side is correct (Content {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on client side", + "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:03,539", + "created": 1742744823.5395808, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", + "module": "test", + "msecs": 539.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7443.267583847046, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on client side", + "=", + "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:03,539", + "created": 1742744823.5398378, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", + "module": "test", + "msecs": 539.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7443.524599075317, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 540.0, + "msg": "Received message on client side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7443.754196166992, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002295970916748047 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 1.9813909530639648, + "time_finished": "2025-03-23 16:47:03,540", + "time_start": "2025-03-23 16:47:01,558" + }, + "REQ-0009": { + "args": null, + "asctime": "2025-03-23 16:47:03,541", + "created": 1742744823.5410602, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0009", + "module": "__init__", + "moduleLogger": [], + "msecs": 541.0, + "msg": "REQ-0009", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7444.746971130371, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5506287, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:03,542", + "created": 1742744823.5427487, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 542.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7446.435451507568, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:03,544", + "created": 1742744823.5441089, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 544.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7447.795629501343, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:03,544", + "created": 1742744823.5444283, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 544.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7448.115110397339, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:03,544", + "created": 1742744823.5448298, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 544.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7448.516607284546, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:03,545", + "created": 1742744823.5450647, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 545.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7448.751449584961, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:03,545", + "created": 1742744823.5453434, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 545.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7449.030160903931, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:03,545", + "created": 1742744823.5455518, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 545.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7449.238538742065, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:03,545", + "created": 1742744823.5457444, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 545.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7449.4311809539795, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:03,545", + "created": 1742744823.5459325, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 545.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7449.619293212891, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:03,546", + "created": 1742744823.5461955, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 546.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7449.88226890564, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:03,546", + "created": 1742744823.5464177, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 546.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7450.104475021362, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:03,546", + "created": 1742744823.5466356, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 546.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7450.322389602661, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:03,546", + "created": 1742744823.5468504, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 546.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7450.537204742432, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:03,547", + "created": 1742744823.5470376, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7450.724363327026, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:03,547", + "created": 1742744823.547237, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7450.923681259155, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:03,547", + "created": 1742744823.547463, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7451.149702072144, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:03,547", + "created": 1742744823.5476582, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7451.344966888428, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:03,547", + "created": 1742744823.5478592, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7451.54595375061, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:03,548", + "created": 1742744823.5480628, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7451.749563217163, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:03,548", + "created": 1742744823.548254, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7451.9407749176025, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:03,548", + "created": 1742744823.5484362, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7452.122926712036, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:03,548", + "created": 1742744823.5486267, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7452.313423156738, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:03,548", + "created": 1742744823.5488198, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7452.506542205811, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.5491526, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7452.839374542236, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.5493557, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.042507171631, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.5496066, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.293323516846, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.5496633, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.350067138672, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.549718, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.404664993286, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.5497708, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.457593917847, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.5498278, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.514575958252, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.549886, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.572750091553, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:03,549", + "created": 1742744823.5499463, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.633069992065, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5500047, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.691482543945, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.550064, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.750848770142, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5501223, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.809022903442, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.550183, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.869819641113, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5502374, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.924179077148, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5502934, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7453.980207443237, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5503502, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.0369510650635, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5504036, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.090356826782, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5504558, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.1425704956055, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5505226, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.209327697754, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5505762, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.262971878052, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 550.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.315423965454, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 5.245208740234375e-05 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:03,894", + "created": 1742744823.8942804, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5507517, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.4384479522705, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5508049, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.49161529541, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5508556, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.542398452759, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:03,550", + "created": 1742744823.5509489, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 550.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.6356201171875, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:03,551", + "created": 1742744823.5511546, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.841375350952, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:03,551", + "created": 1742744823.551214, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.900741577148, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:03,551", + "created": 1742744823.5512688, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7454.955577850342, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:03,551", + "created": 1742744823.551596, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 551.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7455.282688140869, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:03,559", + "created": 1742744823.5597851, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 559.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7463.47188949585, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,560", + "created": 1742744823.5600832, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 560.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7463.769912719727, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,561", + "created": 1742744823.5610383, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 561.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7464.725017547607, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:03,561", + "created": 1742744823.5612931, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 561.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7464.979887008667, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:03,561", + "created": 1742744823.5613902, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 561.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7465.076923370361, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:03,561", + "created": 1742744823.561502, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 561.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7465.18874168396, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:03,561", + "created": 1742744823.5618112, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 561.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7465.497970581055, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:03,569", + "created": 1742744823.569974, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 569.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7473.660707473755, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,570", + "created": 1742744823.570334, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 570.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7474.020719528198, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:03,571", + "created": 1742744823.5713453, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 571.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7475.032091140747, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:03,571", + "created": 1742744823.571711, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 571.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7475.397825241089, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:03,571", + "created": 1742744823.5718474, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 571.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7475.534200668335, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + } + ], + "msecs": 894.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7797.967195510864, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3224329948425293 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:03,894", + "created": 1742744823.894907, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 201, + "message": "Identical secrets set", + "module": "test_communication", + "moduleLogger": [], + "msecs": 894.0, + "msg": "Identical secrets set", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7798.593759536743, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:04,197", + "created": 1742744824.1973424, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 204, + "message": "Transfering a message client -> server", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:03,895", + "created": 1742744823.8953514, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "WARNING", + "levelno": 30, + "lineno": 756, + "message": "prot-client: Authentification is required. TX-Message service: 17, data_id: 34, status: okay, data: 'msg1_data_to_be_transfered' will be ignored.", + "module": "__init__", + "msecs": 895.0, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 7799.0381717681885, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "0.28705533596837945", + "17", + "34" + ], + "asctime": "2025-03-23 16:47:04,196", + "created": 1742744824.1969867, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 687, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "module": "__init__", + "msecs": 196.0, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8100.67343711853, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 197.0, + "msg": "Transfering a message client -> server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8101.02915763855, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00035572052001953125 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:04,198", + "created": 1742744824.198196, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Client send Method is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Client send Method", + "False", + "" + ], + "asctime": "2025-03-23 16:47:04,197", + "created": 1742744824.1977441, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Client send Method): False ()", + "module": "test", + "msecs": 197.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8101.430892944336, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Client send Method", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:04,197", + "created": 1742744824.1979606, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Client send Method): result = False ()", + "module": "test", + "msecs": 197.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8101.64737701416, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 198.0, + "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8101.882696151733, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002353191375732422 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,198", + "created": 1742744824.198907, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on server side is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on server side", + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,198", + "created": 1742744824.198504, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on server side): None ()", + "module": "test", + "msecs": 198.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8102.190732955933, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on server side", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,198", + "created": 1742744824.1986923, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on server side): result = None ()", + "module": "test", + "msecs": 198.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8102.379083633423, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 198.0, + "msg": "Received message on server side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8102.593660354614, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00021457672119140625 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:04,501", + "created": 1742744824.5012224, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 210, + "message": "Transfering a message server -> client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:04,199", + "created": 1742744824.1992967, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "WARNING", + "levelno": 30, + "lineno": 756, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "module": "__init__", + "msecs": 199.0, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8102.983474731445, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "0.28705533596837945", + "17", + "35" + ], + "asctime": "2025-03-23 16:47:04,500", + "created": 1742744824.5008261, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 687, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "module": "__init__", + "msecs": 500.0, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8404.512882232666, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 501.0, + "msg": "Transfering a message server -> client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8404.909133911133, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0003962516784667969 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:04,502", + "created": 1742744824.5022554, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Server send Method", + "False", + "" + ], + "asctime": "2025-03-23 16:47:04,501", + "created": 1742744824.5016763, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Server send Method): False ()", + "module": "test", + "msecs": 501.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8405.363082885742, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Server send Method", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:04,501", + "created": 1742744824.5019238, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Server send Method): result = False ()", + "module": "test", + "msecs": 501.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8405.61056137085, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 502.0, + "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8405.94220161438, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00033164024353027344 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,503", + "created": 1742744824.5030484, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on client side is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on client side", + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,502", + "created": 1742744824.5026217, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on client side): None ()", + "module": "test", + "msecs": 502.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8406.30841255188, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on client side", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,502", + "created": 1742744824.5028396, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on client side): result = None ()", + "module": "test", + "msecs": 502.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8406.526327133179, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 503.0, + "msg": "Received message on client side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8406.735181808472, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00020885467529296875 + }, + { + "args": [ + 17, + 34 + ], + "asctime": "2025-03-23 16:47:04,503", + "created": 1742744824.5033848, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 215, + "message": "Added msg1 to client whitelist (sid=17, did=34)", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "service: 17, data_id: 34" + ], + "asctime": "2025-03-23 16:47:04,503", + "created": 1742744824.5033157, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: 17, data_id: 34) to the authentification whitelist", + "module": "__init__", + "msecs": 503.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8407.002449035645, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 503.0, + "msg": "Added msg1 to client whitelist (sid=%d, did=%d)", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8407.071590423584, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 6.914138793945312e-05 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:04,805", + "created": 1742744824.8052988, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 218, + "message": "Transfering a message client -> server", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:04,503", + "created": 1742744824.503532, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 503.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8407.21869468689, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:04,503", + "created": 1742744824.5039182, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 503.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8407.604932785034, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:04,512", + "created": 1742744824.5122848, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 512.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8415.971517562866, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:47:04,512", + "created": 1742744824.5127141, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 512.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8416.400909423828, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:47:04,517", + "created": 1742744824.5170903, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 517.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8420.777082443237, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:04,517", + "created": 1742744824.5176976, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 517.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8421.384334564209, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:04,517", + "created": 1742744824.5178459, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 472, + "message": "prot-server: Authentification is required. Incomming message will be ignored.", + "module": "__init__", + "msecs": 517.0, + "msg": "%s Authentification is required. Incomming message will be ignored.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8421.53263092041, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:", + "0.28705533596837945", + "17", + "34" + ], + "asctime": "2025-03-23 16:47:04,804", + "created": 1742744824.8049085, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 687, + "message": "prot-server: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 34) not in buffer.", + "module": "__init__", + "msecs": 804.0, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8708.595275878906, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 805.0, + "msg": "Transfering a message client -> server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8708.985567092896, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0003902912139892578 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:04,806", + "created": 1742744824.8062997, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Client send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:04,805", + "created": 1742744824.805775, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Client send Method): True ()", + "module": "test", + "msecs": 805.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8709.461688995361, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Client send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:04,806", + "created": 1742744824.8060198, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Client send Method): result = True ()", + "module": "test", + "msecs": 806.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8709.706544876099, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 806.0, + "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8709.986448287964, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002799034118652344 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,807", + "created": 1742744824.8071198, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on server side is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on server side", + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,806", + "created": 1742744824.8066812, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on server side): None ()", + "module": "test", + "msecs": 806.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8710.367918014526, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on server side", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:04,806", + "created": 1742744824.806909, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on server side): result = None ()", + "module": "test", + "msecs": 806.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8710.595846176147, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 807.0, + "msg": "Received message on server side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8710.806608200073, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00021076202392578125 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:05,109", + "created": 1742744825.10946, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 224, + "message": "Transfering a message server -> client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:04,807", + "created": 1742744824.8075454, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "WARNING", + "levelno": 30, + "lineno": 756, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "module": "__init__", + "msecs": 807.0, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 8711.23218536377, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "0.28705533596837945", + "17", + "35" + ], + "asctime": "2025-03-23 16:47:05,109", + "created": 1742744825.1090672, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 687, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "module": "__init__", + "msecs": 109.0, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9012.753963470459, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 109.0, + "msg": "Transfering a message server -> client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9013.146877288818, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.000392913818359375 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:05,110", + "created": 1742744825.11038, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Server send Method", + "False", + "" + ], + "asctime": "2025-03-23 16:47:05,109", + "created": 1742744825.1098766, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Server send Method): False ()", + "module": "test", + "msecs": 109.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9013.563394546509, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Server send Method", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:05,110", + "created": 1742744825.1101649, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Server send Method): result = False ()", + "module": "test", + "msecs": 110.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9013.851642608643, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 110.0, + "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9014.066696166992, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00021505355834960938 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:05,111", + "created": 1742744825.1110847, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on client side is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on client side", + "None", + "" + ], + "asctime": "2025-03-23 16:47:05,110", + "created": 1742744825.1106906, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on client side): None ()", + "module": "test", + "msecs": 110.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9014.377355575562, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on client side", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:05,110", + "created": 1742744825.1108844, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on client side): result = None ()", + "module": "test", + "msecs": 110.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9014.571189880371, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 111.0, + "msg": "Received message on client side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9014.771461486816, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002002716064453125 + }, + { + "args": [ + 17, + 34 + ], + "asctime": "2025-03-23 16:47:05,111", + "created": 1742744825.1116257, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 229, + "message": "Added msg1 to server whitelist (sid=17, did=34)", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "service: 17, data_id: 34" + ], + "asctime": "2025-03-23 16:47:05,111", + "created": 1742744825.111426, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: 17, data_id: 34) to the authentification whitelist", + "module": "__init__", + "msecs": 111.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9015.11287689209, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 111.0, + "msg": "Added msg1 to server whitelist (sid=%d, did=%d)", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9015.312433242798, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0001995563507080078 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:05,313", + "created": 1742744825.3135417, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 232, + "message": "Transfering a message client -> server", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:05,112", + "created": 1742744825.1120503, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 112.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9015.737056732178, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:05,113", + "created": 1742744825.1134396, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 113.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9017.126321792603, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:05,122", + "created": 1742744825.122192, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 122.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9025.87866783142, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:47:05,123", + "created": 1742744825.1230764, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 123.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9026.763200759888, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:47:05,127", + "created": 1742744825.1276703, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 127.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9031.357049942017, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:05,128", + "created": 1742744825.1287262, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 128.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9032.413005828857, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:05,129", + "created": 1742744825.1290681, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 129.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9032.754898071289, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + } + ], + "msecs": 313.0, + "msg": "Transfering a message client -> server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9217.228412628174, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.18447351455688477 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:05,314", + "created": 1742744825.3147945, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Client send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:05,314", + "created": 1742744825.3142807, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Client send Method): True ()", + "module": "test", + "msecs": 314.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9217.967510223389, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Client send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:05,314", + "created": 1742744825.314562, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Client send Method): result = True ()", + "module": "test", + "msecs": 314.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9218.248844146729, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 314.0, + "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9218.481302261353, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00023245811462402344 + }, + { + "args": [ + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:05,315", + "created": 1742744825.315656, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on server side", + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:05,315", + "created": 1742744825.315207, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", + "module": "test", + "msecs": 315.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9218.893766403198, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on server side", + "=", + "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:05,315", + "created": 1742744825.3154378, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", + "module": "test", + "msecs": 315.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9219.124555587769, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 315.0, + "msg": "Received message on server side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9219.342708587646, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002181529998779297 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:05,617", + "created": 1742744825.617932, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 238, + "message": "Transfering a message server -> client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:05,316", + "created": 1742744825.3160462, + "exc_text": null, + "filename": "__init__.py", + "funcName": "send", + "levelname": "WARNING", + "levelno": 30, + "lineno": 756, + "message": "prot-server: Authentification is required. TX-Message service: 17, data_id: 35, status: service or data unknown, data: 'msg2_data_to_be_transfered' will be ignored.", + "module": "__init__", + "msecs": 316.0, + "msg": "%s Authentification is required. TX-Message %s, %s, data: %s will be ignored.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9219.732999801636, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "0.28705533596837945", + "17", + "35" + ], + "asctime": "2025-03-23 16:47:05,617", + "created": 1742744825.6175385, + "exc_text": null, + "filename": "__init__.py", + "funcName": "receive", + "levelname": "WARNING", + "levelno": 30, + "lineno": 687, + "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 17; data_id: 35) not in buffer.", + "module": "__init__", + "msecs": 617.0, + "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9521.225214004517, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 617.0, + "msg": "Transfering a message server -> client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9521.618843078613, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0003936290740966797 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:05,618", + "created": 1742744825.618967, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Server send Method is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Server send Method", + "False", + "" + ], + "asctime": "2025-03-23 16:47:05,618", + "created": 1742744825.618452, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Server send Method): False ()", + "module": "test", + "msecs": 618.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9522.138833999634, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Server send Method", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:05,618", + "created": 1742744825.618705, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Server send Method): result = False ()", + "module": "test", + "msecs": 618.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9522.39179611206, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 618.0, + "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9522.653818130493, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002620220184326172 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:05,619", + "created": 1742744825.6197672, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on client side is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on client side", + "None", + "" + ], + "asctime": "2025-03-23 16:47:05,619", + "created": 1742744825.6193268, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on client side): None ()", + "module": "test", + "msecs": 619.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9523.013591766357, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on client side", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:05,619", + "created": 1742744825.6195421, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on client side): result = None ()", + "module": "test", + "msecs": 619.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9523.228883743286, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 619.0, + "msg": "Received message on client side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9523.453950881958, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.000225067138671875 + }, + { + "args": [ + 17, + 35 + ], + "asctime": "2025-03-23 16:47:05,620", + "created": 1742744825.6204476, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 244, + "message": "Added msg2 to client and server whitelist (sid=17, did=35)", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "service: 17, data_id: 35" + ], + "asctime": "2025-03-23 16:47:05,620", + "created": 1742744825.6201541, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: 17, data_id: 35) to the authentification whitelist", + "module": "__init__", + "msecs": 620.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9523.84090423584, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: 17, data_id: 35" + ], + "asctime": "2025-03-23 16:47:05,620", + "created": 1742744825.620387, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: 17, data_id: 35) to the authentification whitelist", + "module": "__init__", + "msecs": 620.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9524.073839187622, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 620.0, + "msg": "Added msg2 to client and server whitelist (sid=%d, did=%d)", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9524.134397506714, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 6.0558319091796875e-05 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:05,821", + "created": 1742744825.8218832, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 247, + "message": "Transfering a message client -> server", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:05,620", + "created": 1742744825.620594, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 620.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9524.280786514282, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:05,620", + "created": 1742744825.6209812, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 620.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9524.667978286743, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:05,629", + "created": 1742744825.6293175, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 629.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9533.00428390503, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:47:05,629", + "created": 1742744825.6297033, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 629.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9533.390045166016, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" + ], + "asctime": "2025-03-23 16:47:05,634", + "created": 1742744825.6340892, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", + "module": "__init__", + "msecs": 634.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9537.775993347168, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:05,634", + "created": 1742744825.6346433, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 634.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9538.330078125, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:05,634", + "created": 1742744825.6348076, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 634.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9538.494348526001, + "stack_info": null, + "thread": 140630760081088, + "threadName": "Thread-11 (_start)" + } + ], + "msecs": 821.0, + "msg": "Transfering a message client -> server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9725.5699634552, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.18707561492919922 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:05,823", + "created": 1742744825.823044, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Client send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:05,822", + "created": 1742744825.8225915, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Client send Method): True ()", + "module": "test", + "msecs": 822.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9726.278305053711, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Client send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:05,822", + "created": 1742744825.8228362, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Client send Method): result = True ()", + "module": "test", + "msecs": 822.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9726.52292251587, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 823.0, + "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9726.730823516846, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002079010009765625 + }, + { + "args": [ + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:05,823", + "created": 1742744825.823766, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on server side", + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:05,823", + "created": 1742744825.823369, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", + "module": "test", + "msecs": 823.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9727.055788040161, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on server side", + "=", + "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:05,823", + "created": 1742744825.8235717, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", + "module": "test", + "msecs": 823.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9727.258443832397, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 823.0, + "msg": "Received message on server side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9727.452754974365, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00019431114196777344 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:06,025", + "created": 1742744826.0258534, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "auth_whitelist_communication", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 253, + "message": "Transfering a message server -> client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "TX ->", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:05,824", + "created": 1742744825.824234, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 824.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9727.920770645142, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:05,825", + "created": 1742744825.8257668, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 825.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9729.453563690186, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" + ], + "asctime": "2025-03-23 16:47:05,834", + "created": 1742744825.8346026, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 34 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", + "module": "__init__", + "msecs": 834.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9738.28935623169, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "comm-server:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2025-03-23 16:47:05,835", + "created": 1742744825.8355021, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 835.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9739.18890953064, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "comm-client:", + "(32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e" + ], + "asctime": "2025-03-23 16:47:05,840", + "created": 1742744825.8401306, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (32): 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 73 e9 96 7f 3a 3e", + "module": "__init__", + "msecs": 840.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9743.817329406738, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:05,841", + "created": 1742744825.841194, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 841.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9744.880676269531, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:05,841", + "created": 1742744825.8415172, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 841.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9745.203971862793, + "stack_info": null, + "thread": 140630751688384, + "threadName": "Thread-12 (_start)" + } + ], + "msecs": 25.0, + "msg": "Transfering a message server -> client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9929.540157318115, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.18433618545532227 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:06,026", + "created": 1742744826.0269685, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Server send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:06,026", + "created": 1742744826.0264764, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Server send Method): True ()", + "module": "test", + "msecs": 26.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9930.163145065308, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Server send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:06,026", + "created": 1742744826.0267181, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Server send Method): result = True ()", + "module": "test", + "msecs": 26.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9930.404901504517, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 26.0, + "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9930.655241012573, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002503395080566406 + }, + { + "args": [ + "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:06,027", + "created": 1742744826.0277011, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on client side is correct (Content {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on client side", + "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:06,027", + "created": 1742744826.0273006, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", + "module": "test", + "msecs": 27.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9930.987358093262, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on client side", + "=", + "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:06,027", + "created": 1742744826.0275073, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", + "module": "test", + "msecs": 27.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9931.194067001343, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 27.0, + "msg": "Received message on client side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9931.387901306152, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0001938343048095703 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 2.4866409301757812, + "time_finished": "2025-03-23 16:47:06,027", + "time_start": "2025-03-23 16:47:03,541" + }, + "REQ-0010": { + "args": null, + "asctime": "2025-03-23 16:47:06,028", + "created": 1742744826.028659, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0010", + "module": "__init__", + "moduleLogger": [], + "msecs": 28.0, + "msg": "REQ-0010", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9932.345867156982, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:06,041", + "created": 1742744826.0410266, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,030", + "created": 1742744826.0307558, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 30.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9934.442520141602, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,031", + "created": 1742744826.03196, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 31.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9935.646772384644, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,032", + "created": 1742744826.0322976, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 32.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9935.984373092651, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:06,032", + "created": 1742744826.0327032, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 32.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9936.389923095703, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:06,033", + "created": 1742744826.0333424, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 33.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9937.029123306274, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:06,033", + "created": 1742744826.033639, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 33.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9937.325716018677, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:06,033", + "created": 1742744826.033856, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 33.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9937.54267692566, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:06,034", + "created": 1742744826.0340798, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 34.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9937.766551971436, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:06,034", + "created": 1742744826.0342839, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 34.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9937.970638275146, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:06,034", + "created": 1742744826.0344982, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 34.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9938.184976577759, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:06,034", + "created": 1742744826.0347145, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 34.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9938.401222229004, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:06,034", + "created": 1742744826.0349193, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 34.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9938.606023788452, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:06,035", + "created": 1742744826.0351238, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 35.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9938.810586929321, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:06,035", + "created": 1742744826.0353057, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 35.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9938.992500305176, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:06,035", + "created": 1742744826.0355048, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 35.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9939.191579818726, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:06,035", + "created": 1742744826.0357192, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 35.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9939.405918121338, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:06,035", + "created": 1742744826.035911, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 35.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9939.597845077515, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:06,036", + "created": 1742744826.036115, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 36.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9939.801692962646, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:06,036", + "created": 1742744826.0363185, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 36.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9940.0053024292, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:06,036", + "created": 1742744826.0365086, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 36.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9940.195322036743, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:06,036", + "created": 1742744826.0366955, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 36.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9940.382242202759, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:06,036", + "created": 1742744826.0368774, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 36.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9940.564155578613, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:06,037", + "created": 1742744826.037065, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 37.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9940.751791000366, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:06,037", + "created": 1742744826.0373795, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 37.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9941.066265106201, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:06,037", + "created": 1742744826.03757, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 37.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9941.256761550903, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:06,037", + "created": 1742744826.037782, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 37.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9941.468715667725, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:06,037", + "created": 1742744826.0379624, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 37.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9941.649198532104, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:06,038", + "created": 1742744826.038195, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 38.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9941.881656646729, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:06,038", + "created": 1742744826.0383716, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 38.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9942.058324813843, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:06,038", + "created": 1742744826.038568, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 38.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9942.254781723022, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:06,038", + "created": 1742744826.0387614, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 38.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9942.448139190674, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:06,038", + "created": 1742744826.0389442, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 38.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9942.631006240845, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:06,039", + "created": 1742744826.0391254, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 39.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9942.812204360962, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:06,039", + "created": 1742744826.0392864, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 39.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9942.973136901855, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:06,039", + "created": 1742744826.039461, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 39.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9943.147659301758, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:06,039", + "created": 1742744826.0396497, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 39.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9943.336486816406, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:06,039", + "created": 1742744826.0398467, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 39.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9943.533420562744, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:06,040", + "created": 1742744826.0400238, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 40.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9943.710565567017, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:06,040", + "created": 1742744826.0402038, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 40.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9943.890571594238, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:06,040", + "created": 1742744826.040374, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 40.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9944.060802459717, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:06,040", + "created": 1742744826.04054, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 40.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9944.226741790771, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:06,040", + "created": 1742744826.0407062, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 40.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9944.392919540405, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:06,040", + "created": 1742744826.0408702, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 40.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9944.556951522827, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 41.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9944.713354110718, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.000156402587890625 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:06,386", + "created": 1742744826.3864202, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,041", + "created": 1742744826.0414205, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 41.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9945.107221603394, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,041", + "created": 1742744826.0416026, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 41.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9945.289373397827, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:06,042", + "created": 1742744826.0420003, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 42.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9945.687055587769, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:06,042", + "created": 1742744826.0423703, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 42.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9946.057081222534, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,043", + "created": 1742744826.0430057, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 43.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9946.69246673584, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,043", + "created": 1742744826.043199, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 43.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9946.885824203491, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:06,043", + "created": 1742744826.0433776, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 43.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9947.064399719238, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:06,044", + "created": 1742744826.0440311, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 44.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9947.717905044556, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:06,052", + "created": 1742744826.0525694, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 52.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9956.25615119934, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,053", + "created": 1742744826.053304, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 53.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9956.990718841553, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,054", + "created": 1742744826.0544043, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 54.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9958.091020584106, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:06,055", + "created": 1742744826.0551224, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 55.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9958.80913734436, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:06,055", + "created": 1742744826.0553777, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 55.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9959.064483642578, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:06,055", + "created": 1742744826.0556824, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 55.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9959.36918258667, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:06,056", + "created": 1742744826.0566633, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 56.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9960.350036621094, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:06,065", + "created": 1742744826.0652285, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 65.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9968.915224075317, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,065", + "created": 1742744826.06592, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 65.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9969.606876373291, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,067", + "created": 1742744826.0670285, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 67.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9970.715284347534, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:06,067", + "created": 1742744826.0676312, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 67.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9971.318006515503, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:06,067", + "created": 1742744826.067907, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 67.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 9971.593856811523, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + } + ], + "msecs": 386.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10290.107011795044, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3185131549835205 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:06,387", + "created": 1742744826.3871176, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 261, + "message": "Setting no Channel name for server and client", + "module": "test_communication", + "moduleLogger": [], + "msecs": 387.0, + "msg": "Setting no Channel name for server and client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10290.804386138916, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:06,388", + "created": 1742744826.388021, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of server is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of server", + "None", + "" + ], + "asctime": "2025-03-23 16:47:06,387", + "created": 1742744826.3875415, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of server): None ()", + "module": "test", + "msecs": 387.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10291.228294372559, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of server", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:06,387", + "created": 1742744826.38781, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of server): result = None ()", + "module": "test", + "msecs": 387.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10291.496753692627, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 388.0, + "msg": "Channel name of server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10291.707754135132, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002110004425048828 + }, + { + "args": [ + "None", + "" + ], + "asctime": "2025-03-23 16:47:06,388", + "created": 1742744826.3887334, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of client is correct (Content None and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of client", + "None", + "" + ], + "asctime": "2025-03-23 16:47:06,388", + "created": 1742744826.3883471, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of client): None ()", + "module": "test", + "msecs": 388.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10292.033910751343, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of client", + "=", + "None", + "" + ], + "asctime": "2025-03-23 16:47:06,388", + "created": 1742744826.3885407, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of client): result = None ()", + "module": "test", + "msecs": 388.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10292.227506637573, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 388.0, + "msg": "Channel name of client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10292.420148849487, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0001926422119140625 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:06,389", + "created": 1742744826.3892627, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 267, + "message": "Setting different Channel names for client and Server", + "module": "test_communication", + "moduleLogger": [], + "msecs": 389.0, + "msg": "Setting different Channel names for client and Server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10292.949438095093, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:06,735", + "created": 1742744826.7354767, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 271, + "message": "Connecting Server and Client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,389", + "created": 1742744826.3895802, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 389.0, + "msg": "%s Connection Lost...", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10293.267011642456, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:06,389", + "created": 1742744826.3898199, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 389.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10293.506622314453, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,390", + "created": 1742744826.3900268, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 390.0, + "msg": "%s Connection Lost...", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10293.713569641113, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:06,390", + "created": 1742744826.3902698, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 390.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10293.956518173218, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,390", + "created": 1742744826.390462, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 390.0, + "msg": "%s Connection established...", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10294.148683547974, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,390", + "created": 1742744826.3906684, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 390.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10294.355154037476, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:06,390", + "created": 1742744826.3908749, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 390.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10294.561624526978, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "'client'" + ], + "asctime": "2025-03-23 16:47:06,391", + "created": 1742744826.3912003, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "module": "__init__", + "msecs": 391.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10294.887065887451, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,391", + "created": 1742744826.3918905, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 391.0, + "msg": "%s Connection established...", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10295.57728767395, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,392", + "created": 1742744826.3921232, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 392.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10295.809984207153, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:06,392", + "created": 1742744826.392339, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 392.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10296.02575302124, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" + ], + "asctime": "2025-03-23 16:47:06,393", + "created": 1742744826.3930616, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", + "module": "__init__", + "msecs": 393.0, + "msg": "%s TX -> %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10296.748399734497, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" + ], + "asctime": "2025-03-23 16:47:06,401", + "created": 1742744826.4017837, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", + "module": "__init__", + "msecs": 401.0, + "msg": "%s RX <- %s", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10305.47046661377, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-client:", + "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,402", + "created": 1742744826.4026954, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (10): 6e 74 22 7d ee af 7b 7e 3a 3e", + "module": "__init__", + "msecs": 402.0, + "msg": "%s TX -> %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10306.382179260254, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,404", + "created": 1742744826.4045913, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (10): 6e 74 22 7d ee af 7b 7e 3a 3e", + "module": "__init__", + "msecs": 404.0, + "msg": "%s RX <- %s", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10308.27808380127, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "'client'" + ], + "asctime": "2025-03-23 16:47:06,405", + "created": 1742744826.4055, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "module": "__init__", + "msecs": 405.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10309.186697006226, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:06,405", + "created": 1742744826.405803, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 405.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10309.489727020264, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "'server'", + "'client'" + ], + "asctime": "2025-03-23 16:47:06,406", + "created": 1742744826.4062097, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__channel_name_request__", + "levelname": "WARNING", + "levelno": 30, + "lineno": 424, + "message": "prot-server: overwriting user defined channel name from 'server' to 'client'", + "module": "__init__", + "msecs": 406.0, + "msg": "%s overwriting user defined channel name from %s to %s", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10309.896469116211, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:06,406", + "created": 1742744826.4065468, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 406.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10310.23359298706, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:06,407", + "created": 1742744826.4075346, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 407.0, + "msg": "%s TX -> %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10311.221361160278, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:06,416", + "created": 1742744826.416282, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 416.0, + "msg": "%s RX <- %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10319.968700408936, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,417", + "created": 1742744826.4171371, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 417.0, + "msg": "%s TX -> %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10320.823907852173, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,418", + "created": 1742744826.4183142, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 418.0, + "msg": "%s RX <- %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10322.000980377197, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:06,419", + "created": 1742744826.419088, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 419.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10322.774648666382, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:06,419", + "created": 1742744826.4194002, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 419.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10323.086977005005, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + } + ], + "msecs": 735.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10639.163494110107, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.31607651710510254 + }, + { + "args": [ + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:06,736", + "created": 1742744826.736762, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of server is correct (Content 'client' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of server", + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:06,736", + "created": 1742744826.7362478, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of server): 'client' ()", + "module": "test", + "msecs": 736.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10639.934539794922, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of server", + "=", + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:06,736", + "created": 1742744826.7365272, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of server): result = 'client' ()", + "module": "test", + "msecs": 736.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10640.213966369629, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 736.0, + "msg": "Channel name of server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10640.448808670044, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00023484230041503906 + }, + { + "args": [ + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:06,737", + "created": 1742744826.7375765, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of client is correct (Content 'client' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of client", + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:06,737", + "created": 1742744826.737132, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of client): 'client' ()", + "module": "test", + "msecs": 737.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10640.81883430481, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of client", + "=", + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:06,737", + "created": 1742744826.737354, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of client): result = 'client' ()", + "module": "test", + "msecs": 737.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10641.040802001953, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 737.0, + "msg": "Channel name of client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10641.263246536255, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002224445343017578 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:06,738", + "created": 1742744826.7381737, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 277, + "message": "Setting identical Channel names for client and server", + "module": "test_communication", + "moduleLogger": [], + "msecs": 738.0, + "msg": "Setting identical Channel names for client and server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10641.860485076904, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:07,083", + "created": 1742744827.0834045, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 281, + "message": "Connecting Server and Client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,738", + "created": 1742744826.7385614, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 738.0, + "msg": "%s Connection Lost...", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10642.248153686523, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:06,738", + "created": 1742744826.738828, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 738.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10642.514705657959, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,739", + "created": 1742744826.7390223, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 739.0, + "msg": "%s Connection Lost...", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10642.709016799927, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:06,739", + "created": 1742744826.7392094, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 739.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10642.896175384521, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,739", + "created": 1742744826.7394118, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 739.0, + "msg": "%s Connection established...", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10643.098592758179, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:06,739", + "created": 1742744826.739611, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 739.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10643.297672271729, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:06,739", + "created": 1742744826.7397025, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 739.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10643.389225006104, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "'unittest'" + ], + "asctime": "2025-03-23 16:47:06,739", + "created": 1742744826.739806, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", + "module": "__init__", + "msecs": 739.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10643.492698669434, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,740", + "created": 1742744826.7400413, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 740.0, + "msg": "%s Connection established...", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10643.728017807007, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:06,740", + "created": 1742744826.7401044, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 740.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10643.791198730469, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:06,740", + "created": 1742744826.740163, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 740.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10643.849849700928, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74" + ], + "asctime": "2025-03-23 16:47:06,740", + "created": 1742744826.7403414, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74", + "module": "__init__", + "msecs": 740.0, + "msg": "%s TX -> %s", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10644.028186798096, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74" + ], + "asctime": "2025-03-23 16:47:06,748", + "created": 1742744826.7486646, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 75 6e 69 74", + "module": "__init__", + "msecs": 748.0, + "msg": "%s RX <- %s", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10652.351379394531, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-client:", + "(12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,749", + "created": 1742744826.7490532, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e", + "module": "__init__", + "msecs": 749.0, + "msg": "%s TX -> %s", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10652.740001678467, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,750", + "created": 1742744826.7508616, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (12): 74 65 73 74 22 7d f8 f6 c9 e9 3a 3e", + "module": "__init__", + "msecs": 750.0, + "msg": "%s RX <- %s", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10654.548406600952, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "'unittest'" + ], + "asctime": "2025-03-23 16:47:06,751", + "created": 1742744826.751284, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'unittest'\"", + "module": "__init__", + "msecs": 751.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10654.970645904541, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:06,751", + "created": 1742744826.7514036, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 751.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10655.09033203125, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:06,751", + "created": 1742744826.7515857, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 751.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10655.272483825684, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:06,752", + "created": 1742744826.7520099, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 752.0, + "msg": "%s TX -> %s", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10655.696630477905, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:06,760", + "created": 1742744826.760395, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 760.0, + "msg": "%s RX <- %s", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10664.081811904907, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,760", + "created": 1742744826.760833, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 760.0, + "msg": "%s TX -> %s", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10664.519786834717, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:06,761", + "created": 1742744826.7618718, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 761.0, + "msg": "%s RX <- %s", + "name": "helpers.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10665.558576583862, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:06,762", + "created": 1742744826.7623432, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 762.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10666.029930114746, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:06,762", + "created": 1742744826.7625275, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 762.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.unittest", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10666.214227676392, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + } + ], + "msecs": 83.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10987.091302871704, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3208770751953125 + }, + { + "args": [ + "'unittest'", + "" + ], + "asctime": "2025-03-23 16:47:07,084", + "created": 1742744827.0845397, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of server is correct (Content 'unittest' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of server", + "'unittest'", + "" + ], + "asctime": "2025-03-23 16:47:07,084", + "created": 1742744827.0840836, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of server): 'unittest' ()", + "module": "test", + "msecs": 84.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10987.770318984985, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of server", + "=", + "'unittest'", + "" + ], + "asctime": "2025-03-23 16:47:07,084", + "created": 1742744827.0843303, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of server): result = 'unittest' ()", + "module": "test", + "msecs": 84.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10988.017082214355, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 84.0, + "msg": "Channel name of server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10988.226413726807, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00020933151245117188 + }, + { + "args": [ + "'unittest'", + "" + ], + "asctime": "2025-03-23 16:47:07,085", + "created": 1742744827.0852532, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of client is correct (Content 'unittest' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of client", + "'unittest'", + "" + ], + "asctime": "2025-03-23 16:47:07,084", + "created": 1742744827.084872, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of client): 'unittest' ()", + "module": "test", + "msecs": 84.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10988.558769226074, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of client", + "=", + "'unittest'", + "" + ], + "asctime": "2025-03-23 16:47:07,085", + "created": 1742744827.085069, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of client): result = 'unittest' ()", + "module": "test", + "msecs": 85.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10988.755702972412, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 85.0, + "msg": "Channel name of client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10988.940000534058, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0001842975616455078 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:07,085", + "created": 1742744827.0857027, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 287, + "message": "Setting Channel name for client only", + "module": "test_communication", + "moduleLogger": [], + "msecs": 85.0, + "msg": "Setting Channel name for client only", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10989.389419555664, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:07,431", + "created": 1742744827.4319904, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 291, + "message": "Connecting Server and Client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,085", + "created": 1742744827.0859869, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 85.0, + "msg": "%s Connection Lost...", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10989.673614501953, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:07,086", + "created": 1742744827.0862558, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 86.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10989.94255065918, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,086", + "created": 1742744827.0864773, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 86.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10990.164041519165, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:07,086", + "created": 1742744827.0866673, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 86.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10990.354061126709, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,086", + "created": 1742744827.0868552, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 86.0, + "msg": "%s Connection established...", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10990.541934967041, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,087", + "created": 1742744827.0870311, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 87.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10990.717887878418, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:07,087", + "created": 1742744827.087216, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 87.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10990.902662277222, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "'client'" + ], + "asctime": "2025-03-23 16:47:07,087", + "created": 1742744827.0875363, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "module": "__init__", + "msecs": 87.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10991.223096847534, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,088", + "created": 1742744827.0882356, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 88.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10991.922378540039, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,088", + "created": 1742744827.088452, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 88.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10992.138862609863, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:07,088", + "created": 1742744827.088651, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 88.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10992.337703704834, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" + ], + "asctime": "2025-03-23 16:47:07,089", + "created": 1742744827.0893724, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", + "module": "__init__", + "msecs": 89.0, + "msg": "%s TX -> %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 10993.059158325195, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65" + ], + "asctime": "2025-03-23 16:47:07,098", + "created": 1742744827.0980973, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 63 6c 69 65", + "module": "__init__", + "msecs": 98.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11001.784086227417, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-client:", + "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,098", + "created": 1742744827.0989542, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (10): 6e 74 22 7d ee af 7b 7e 3a 3e", + "module": "__init__", + "msecs": 98.0, + "msg": "%s TX -> %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11002.640962600708, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(10): 6e 74 22 7d ee af 7b 7e 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,100", + "created": 1742744827.1008062, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (10): 6e 74 22 7d ee af 7b 7e 3a 3e", + "module": "__init__", + "msecs": 100.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11004.492998123169, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "'client'" + ], + "asctime": "2025-03-23 16:47:07,101", + "created": 1742744827.1017368, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"'client'\"", + "module": "__init__", + "msecs": 101.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11005.423545837402, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:07,102", + "created": 1742744827.1020224, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 102.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11005.709171295166, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "'client'" + ], + "asctime": "2025-03-23 16:47:07,102", + "created": 1742744827.102474, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__channel_name_request__", + "levelname": "INFO", + "levelno": 20, + "lineno": 427, + "message": "prot-server: channel name is now 'client'", + "module": "__init__", + "msecs": 102.0, + "msg": "%s channel name is now %s", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11006.160736083984, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:07,102", + "created": 1742744827.1028013, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 102.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11006.48808479309, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:07,103", + "created": 1742744827.1037784, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 103.0, + "msg": "%s TX -> %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11007.465124130249, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:07,112", + "created": 1742744827.1124747, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 112.0, + "msg": "%s RX <- %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11016.161441802979, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,113", + "created": 1742744827.1133254, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 113.0, + "msg": "%s TX -> %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11017.012119293213, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,114", + "created": 1742744827.1144555, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 114.0, + "msg": "%s RX <- %s", + "name": "helpers.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11018.142223358154, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:07,115", + "created": 1742744827.1152227, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 115.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11018.909454345703, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:07,115", + "created": 1742744827.1155, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 115.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.client", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11019.186735153198, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + } + ], + "msecs": 431.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11335.677146911621, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.31649041175842285 + }, + { + "args": [ + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:07,433", + "created": 1742744827.4332733, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of server is correct (Content 'client' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of server", + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:07,432", + "created": 1742744827.4327629, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of server): 'client' ()", + "module": "test", + "msecs": 432.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11336.44962310791, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of server", + "=", + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:07,433", + "created": 1742744827.4330444, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of server): result = 'client' ()", + "module": "test", + "msecs": 433.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11336.73119544983, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 433.0, + "msg": "Channel name of server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11336.960077285767, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002288818359375 + }, + { + "args": [ + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:07,434", + "created": 1742744827.4341466, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of client is correct (Content 'client' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of client", + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:07,433", + "created": 1742744827.4336457, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of client): 'client' ()", + "module": "test", + "msecs": 433.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11337.332487106323, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of client", + "=", + "'client'", + "" + ], + "asctime": "2025-03-23 16:47:07,433", + "created": 1742744827.433866, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of client): result = 'client' ()", + "module": "test", + "msecs": 433.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11337.552785873413, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 434.0, + "msg": "Channel name of client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11337.833404541016, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00028061866760253906 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:07,434", + "created": 1742744827.4346788, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 297, + "message": "Setting Channel name for server only", + "module": "test_communication", + "moduleLogger": [], + "msecs": 434.0, + "msg": "Setting Channel name for server only", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11338.36555480957, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:07,780", + "created": 1742744827.7804737, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "channel_name_exchange", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 301, + "message": "Connecting Server and Client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,435", + "created": 1742744827.4350076, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 435.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11338.694334030151, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:07,435", + "created": 1742744827.4352527, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 435.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11338.939428329468, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,435", + "created": 1742744827.435462, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 435.0, + "msg": "%s Connection Lost...", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11339.148759841919, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:07,435", + "created": 1742744827.4356854, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 435.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11339.372158050537, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,435", + "created": 1742744827.435901, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 435.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11339.587688446045, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,436", + "created": 1742744827.4361167, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 436.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11339.803457260132, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:07,436", + "created": 1742744827.4363313, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 436.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11340.018033981323, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:07,436", + "created": 1742744827.4366944, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 436.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11340.381145477295, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,437", + "created": 1742744827.4372628, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 437.0, + "msg": "%s Connection established...", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11340.949535369873, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,437", + "created": 1742744827.4373283, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 437.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11341.015100479126, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:07,437", + "created": 1742744827.4373903, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 437.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11341.077089309692, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:07,437", + "created": 1742744827.4378588, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 437.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11341.545581817627, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:07,446", + "created": 1742744827.4461992, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 446.0, + "msg": "%s RX <- %s", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11349.885940551758, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,446", + "created": 1742744827.4465551, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 446.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11350.241899490356, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,447", + "created": 1742744827.4475205, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 447.0, + "msg": "%s RX <- %s", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11351.207256317139, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:07,447", + "created": 1742744827.4478707, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 447.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11351.557493209839, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:07,447", + "created": 1742744827.4479954, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 447.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11351.682186126709, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "'server'" + ], + "asctime": "2025-03-23 16:47:07,448", + "created": 1742744827.4481416, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"'server'\"", + "module": "__init__", + "msecs": 448.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11351.828336715698, + "stack_info": null, + "thread": 140630743295680, + "threadName": "Thread-13 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76" + ], + "asctime": "2025-03-23 16:47:07,448", + "created": 1742744827.4485886, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76", + "module": "__init__", + "msecs": 448.0, + "msg": "%s TX -> %s", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11352.275371551514, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76" + ], + "asctime": "2025-03-23 16:47:07,457", + "created": 1742744827.4570043, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 73 65 72 76", + "module": "__init__", + "msecs": 457.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11360.69107055664, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-server:", + "(10): 65 72 22 7d ac a3 7b cc 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,457", + "created": 1742744827.4574802, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (10): 65 72 22 7d ac a3 7b cc 3a 3e", + "module": "__init__", + "msecs": 457.0, + "msg": "%s TX -> %s", + "name": "helpers.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11361.166954040527, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "comm-client:", + "(10): 65 72 22 7d ac a3 7b cc 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,459", + "created": 1742744827.459035, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (10): 65 72 22 7d ac a3 7b cc 3a 3e", + "module": "__init__", + "msecs": 459.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11362.721681594849, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "'server'" + ], + "asctime": "2025-03-23 16:47:07,459", + "created": 1742744827.4596014, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"'server'\"", + "module": "__init__", + "msecs": 459.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11363.288164138794, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:07,459", + "created": 1742744827.4598022, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 459.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11363.488912582397, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + }, + { + "args": [ + "prot-client:", + "'server'" + ], + "asctime": "2025-03-23 16:47:07,460", + "created": 1742744827.4600387, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__channel_name_response__", + "levelname": "INFO", + "levelno": 20, + "lineno": 413, + "message": "prot-client: channel name is now 'server'", + "module": "__init__", + "msecs": 460.0, + "msg": "%s channel name is now %s", + "name": "socket_protocol.server", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11363.725423812866, + "stack_info": null, + "thread": 140630734902976, + "threadName": "Thread-14 (_start)" + } + ], + "msecs": 780.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11684.160470962524, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3204350471496582 + }, + { + "args": [ + "'server'", + "" + ], + "asctime": "2025-03-23 16:47:07,781", + "created": 1742744827.781647, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of server is correct (Content 'server' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of server", + "'server'", + "" + ], + "asctime": "2025-03-23 16:47:07,781", + "created": 1742744827.7811785, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of server): 'server' ()", + "module": "test", + "msecs": 781.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11684.865236282349, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of server", + "=", + "'server'", + "" + ], + "asctime": "2025-03-23 16:47:07,781", + "created": 1742744827.7814379, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of server): result = 'server' ()", + "module": "test", + "msecs": 781.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11685.124635696411, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 781.0, + "msg": "Channel name of server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11685.333728790283, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002090930938720703 + }, + { + "args": [ + "'server'", + "" + ], + "asctime": "2025-03-23 16:47:07,782", + "created": 1742744827.7824352, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Channel name of client is correct (Content 'server' and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Channel name of client", + "'server'", + "" + ], + "asctime": "2025-03-23 16:47:07,782", + "created": 1742744827.7820013, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Channel name of client): 'server' ()", + "module": "test", + "msecs": 782.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11685.688018798828, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Channel name of client", + "=", + "'server'", + "" + ], + "asctime": "2025-03-23 16:47:07,782", + "created": 1742744827.7822487, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Channel name of client): result = 'server' ()", + "module": "test", + "msecs": 782.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11685.935497283936, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 782.0, + "msg": "Channel name of client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11686.121940612793, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00018644332885742188 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 1.7537760734558105, + "time_finished": "2025-03-23 16:47:07,782", + "time_start": "2025-03-23 16:47:06,028" + }, + "REQ-0011": { + "args": null, + "asctime": "2025-03-23 16:47:07,783", + "created": 1742744827.783269, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0011", + "module": "__init__", + "moduleLogger": [], + "msecs": 783.0, + "msg": "REQ-0011", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11686.955690383911, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:07,796", + "created": 1742744827.7960234, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,785", + "created": 1742744827.7855215, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 785.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11689.208269119263, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,786", + "created": 1742744827.7868297, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 786.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11690.516471862793, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,787", + "created": 1742744827.7871556, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 787.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11690.842390060425, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:07,787", + "created": 1742744827.7875674, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 787.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11691.254138946533, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:07,787", + "created": 1742744827.787808, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 787.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11691.494703292847, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:07,788", + "created": 1742744827.7880876, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 788.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11691.774368286133, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:07,788", + "created": 1742744827.7882988, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 788.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11691.985607147217, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:07,788", + "created": 1742744827.7884967, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 788.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11692.183494567871, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:07,788", + "created": 1742744827.7886884, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 788.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11692.375183105469, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:07,788", + "created": 1742744827.7889235, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 788.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11692.610263824463, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:07,789", + "created": 1742744827.7891538, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 789.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11692.840576171875, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:07,789", + "created": 1742744827.7893682, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 789.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11693.054914474487, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:07,789", + "created": 1742744827.7895708, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 789.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11693.257570266724, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:07,789", + "created": 1742744827.789806, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 789.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11693.492650985718, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:07,790", + "created": 1742744827.790022, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 790.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11693.708658218384, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:07,790", + "created": 1742744827.7903137, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 790.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11694.000482559204, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:07,790", + "created": 1742744827.7905369, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 790.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11694.223642349243, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:07,790", + "created": 1742744827.79075, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 790.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11694.43678855896, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:07,790", + "created": 1742744827.7909606, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 790.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11694.647312164307, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:07,791", + "created": 1742744827.791158, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 791.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11694.844722747803, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:07,791", + "created": 1742744827.79136, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 791.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11695.046663284302, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:07,791", + "created": 1742744827.7915628, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 791.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11695.249557495117, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:07,791", + "created": 1742744827.7917244, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 791.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11695.411205291748, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:07,792", + "created": 1742744827.7920227, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 792.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11695.709466934204, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:07,792", + "created": 1742744827.7922022, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 792.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11695.888996124268, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:07,792", + "created": 1742744827.7924209, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 792.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11696.107625961304, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:07,792", + "created": 1742744827.7926059, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 792.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11696.292638778687, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:07,792", + "created": 1742744827.7927728, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 792.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11696.459531784058, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:07,792", + "created": 1742744827.7929366, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 792.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11696.6233253479, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:07,793", + "created": 1742744827.7931087, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 793.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11696.795463562012, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:07,793", + "created": 1742744827.793301, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 793.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11696.987867355347, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:07,793", + "created": 1742744827.7934828, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 793.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11697.169542312622, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:07,793", + "created": 1742744827.7936592, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 793.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11697.345972061157, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:07,793", + "created": 1742744827.7938209, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 793.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11697.507619857788, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:07,793", + "created": 1742744827.7939916, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 793.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11697.678327560425, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:07,794", + "created": 1742744827.7946105, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 794.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11698.297262191772, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:07,794", + "created": 1742744827.7947958, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 794.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11698.482513427734, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:07,794", + "created": 1742744827.7949784, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 794.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11698.665142059326, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:07,795", + "created": 1742744827.7951634, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 795.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11698.850154876709, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:07,795", + "created": 1742744827.7953384, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 795.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11699.02515411377, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:07,795", + "created": 1742744827.7955024, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 795.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11699.189186096191, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:07,795", + "created": 1742744827.7956836, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 795.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11699.370384216309, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:07,795", + "created": 1742744827.7958543, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 795.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11699.541091918945, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 796.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11699.710130691528, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0001690387725830078 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:08,141", + "created": 1742744828.1415973, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,796", + "created": 1742744827.7964542, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 796.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11700.140953063965, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:07,796", + "created": 1742744827.7966325, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 796.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11700.319290161133, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:07,796", + "created": 1742744827.7968278, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 796.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11700.514554977417, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:07,797", + "created": 1742744827.7971168, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 797.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11700.803518295288, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,797", + "created": 1742744827.7979877, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 797.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11701.674461364746, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:07,798", + "created": 1742744827.7982733, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 798.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11701.96008682251, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:07,798", + "created": 1742744827.7984738, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 798.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11702.160596847534, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:07,799", + "created": 1742744827.7990432, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 799.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11702.729940414429, + "stack_info": null, + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:07,807", + "created": 1742744827.8074195, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 807.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11711.106300354004, + "stack_info": null, + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,807", + "created": 1742744827.8076785, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 807.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11711.365222930908, + "stack_info": null, + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,808", + "created": 1742744827.8086133, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 808.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11712.300062179565, + "stack_info": null, + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:07,808", + "created": 1742744827.8088408, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 808.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11712.527513504028, + "stack_info": null, + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:07,808", + "created": 1742744827.8089166, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 808.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11712.603330612183, + "stack_info": null, + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:07,809", + "created": 1742744827.8090086, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 809.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11712.695360183716, + "stack_info": null, + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:07,809", + "created": 1742744827.809276, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 809.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11712.962865829468, + "stack_info": null, + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:07,817", + "created": 1742744827.8175414, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 817.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11721.228122711182, + "stack_info": null, + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,817", + "created": 1742744827.8177993, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 817.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11721.48609161377, + "stack_info": null, + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:07,818", + "created": 1742744827.8187404, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 818.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11722.427129745483, + "stack_info": null, + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:07,818", + "created": 1742744827.8189843, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 818.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11722.671031951904, + "stack_info": null, + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:07,819", + "created": 1742744827.8190675, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 819.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 11722.75424003601, + "stack_info": null, + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" + } + ], + "msecs": 141.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 12045.284032821655, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.32252979278564453 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:08,444", + "created": 1742744828.4448376, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service", @@ -181350,26 +29816,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-02-28 19:00:03,632", - "created": 1614535203.6327102, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,142", + "created": 1742744828.1424873, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 632.7102184295654, + "msecs": 142.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12120.277881622314, + "relativeCreated": 12046.174049377441, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -181377,9 +29842,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 19:00:03,634", - "created": 1614535203.6342018, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,143", + "created": 1742744828.1436229, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -181388,25 +29852,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 634.2017650604248, + "msecs": 143.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12121.769428253174, + "relativeCreated": 12047.309637069702, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 19:00:03,642", - "created": 1614535203.6429052, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,152", + "created": 1742744828.1521242, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -181415,300 +29878,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 642.9052352905273, + "msecs": 152.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12130.472898483276, + "relativeCreated": 12055.810928344727, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,643", - "created": 1614535203.643324, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 643.3238983154297, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12130.891561508179, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:03,643", - "created": 1614535203.6435428, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 643.5427665710449, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12131.110429763794, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,643", - "created": 1614535203.643809, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 643.8090801239014, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12131.37674331665, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,643", - "created": 1614535203.6439884, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 643.9883708953857, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12131.556034088135, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,644", - "created": 1614535203.6442585, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 644.2584991455078, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12131.826162338257, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,644", - "created": 1614535203.6444592, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 644.4592475891113, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12132.02691078186, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,644", - "created": 1614535203.6447113, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 644.7112560272217, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12132.27891921997, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,644", - "created": 1614535203.6448925, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 644.8924541473389, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12132.460117340088, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,645", - "created": 1614535203.6451242, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 645.1241970062256, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12132.691860198975, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,645", - "created": 1614535203.6452708, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 645.270824432373, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12132.838487625122, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-02-28 19:00:03,645", - "created": 1614535203.64559, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,152", + "created": 1742744828.1529896, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -181717,25 +29904,24 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 645.59006690979, + "msecs": 152.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12133.157730102539, + "relativeCreated": 12056.676387786865, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-02-28 19:00:03,650", - "created": 1614535203.650056, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,157", + "created": 1742744828.1576178, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -181744,98 +29930,16 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 650.0558853149414, + "msecs": 157.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12137.62354850769, + "relativeCreated": 12061.304569244385, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,650", - "created": 1614535203.6506157, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 650.6156921386719, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12138.18335533142, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:03,650", - "created": 1614535203.650832, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 650.831937789917, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12138.399600982666, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" - ], - "asctime": "2021-02-28 19:00:03,651", - "created": 1614535203.6511831, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "stp", - "msecs": 651.1831283569336, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12138.750791549683, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ @@ -181845,53 +29949,51 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-02-28 19:00:03,651", - "created": 1614535203.6516304, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,158", + "created": 1742744828.1587493, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 651.6304016113281, + "msecs": 158.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12139.198064804077, + "relativeCreated": 12062.4361038208, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:03,651", - "created": 1614535203.6518924, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,159", + "created": 1742744828.159098, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 651.8924236297607, + "msecs": 159.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12139.46008682251, + "relativeCreated": 12062.784671783447, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ @@ -181900,55 +30002,53 @@ "18", "34" ], - "asctime": "2021-02-28 19:00:03,934", - "created": 1614535203.9347725, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,444", + "created": 1742744828.4444768, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 683, + "lineno": 687, "message": "prot-client: TIMEOUT (0.28705533596837945s): Requested data (service_id: 18; data_id: 34) not in buffer.", "module": "__init__", - "msecs": 934.7724914550781, + "msecs": 444.0, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12422.340154647827, + "relativeCreated": 12348.163604736328, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 935.1160526275635, + "msecs": 444.0, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12422.683715820312, + "relativeCreated": 12348.524332046509, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00034356117248535156 + "time_consumption": 0.00036072731018066406 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 19:00:03,935", - "created": 1614535203.9358976, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,445", + "created": 1742744828.4457328, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -181958,9 +30058,8 @@ "True", "" ], - "asctime": "2021-02-28 19:00:03,935", - "created": 1614535203.9355257, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,445", + "created": 1742744828.445315, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -181969,72 +30068,71 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 935.52565574646, + "msecs": 445.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12423.093318939209, + "relativeCreated": 12349.00164604187, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Returnvalue of Client send Method", + "=", "True", "" ], - "asctime": "2021-02-28 19:00:03,935", - "created": 1614535203.9357216, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,445", + "created": 1742744828.4455376, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 935.7216358184814, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 445.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12423.28929901123, + "relativeCreated": 12349.224328994751, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 935.8975887298584, + "msecs": 445.0, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12423.465251922607, + "relativeCreated": 12349.419593811035, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00017595291137695312 + "time_consumption": 0.0001952648162841797 }, { "args": [ "None", "" ], - "asctime": "2021-02-28 19:00:03,936", - "created": 1614535203.9365156, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,446", + "created": 1742744828.4464858, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Received message on server side is correct (Content None and Type is ).", "module": "test", "moduleLogger": [ @@ -182044,9 +30142,8 @@ "None", "" ], - "asctime": "2021-02-28 19:00:03,936", - "created": 1614535203.9361653, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,446", + "created": 1742744828.4460332, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -182055,63 +30152,62 @@ "lineno": 22, "message": "Result (Received message on server side): None ()", "module": "test", - "msecs": 936.1653327941895, + "msecs": 446.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12423.732995986938, + "relativeCreated": 12349.720001220703, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Received message on server side", + "=", "None", "" ], - "asctime": "2021-02-28 19:00:03,936", - "created": 1614535203.9363275, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,446", + "created": 1742744828.4462883, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Received message on server side): result = None ()", "module": "test", - "msecs": 936.3274574279785, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 446.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12423.895120620728, + "relativeCreated": 12349.975109100342, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 936.5155696868896, + "msecs": 446.0, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12424.083232879639, + "relativeCreated": 12350.172519683838, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001881122589111328 + "time_consumption": 0.00019741058349609375 }, { "args": [], - "asctime": "2021-02-28 19:00:03,936", - "created": 1614535203.9369795, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,447", + "created": 1742744828.4470215, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service", @@ -182127,46 +30223,44 @@ "17", "18" ], - "asctime": "2021-02-28 19:00:03,936", - "created": 1614535203.9368036, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,446", + "created": 1742744828.446831, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=17 and Response=18", "module": "__init__", - "msecs": 936.8035793304443, + "msecs": 446.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12424.371242523193, + "relativeCreated": 12350.517749786377, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 936.9795322418213, + "msecs": 447.0, "msg": "Adding service to server instance for the transmit message", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12424.54719543457, + "relativeCreated": 12350.70824623108, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00017595291137695312 + "time_consumption": 0.00019049644470214844 }, { "args": [], - "asctime": "2021-02-28 19:00:04,139", - "created": 1614535204.1392195, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,649", + "created": 1742744828.649068, "exc_text": null, "filename": "test_communication.py", "funcName": "add_service", @@ -182184,26 +30278,25 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-02-28 19:00:03,937", - "created": 1614535203.9373958, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,447", + "created": 1742744828.4474473, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 937.3958110809326, + "msecs": 447.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12424.963474273682, + "relativeCreated": 12351.134061813354, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -182211,9 +30304,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 19:00:03,938", - "created": 1614535203.9387186, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,448", + "created": 1742744828.4485526, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -182222,25 +30314,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 938.7185573577881, + "msecs": 448.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12426.286220550537, + "relativeCreated": 12352.23937034607, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73" ], - "asctime": "2021-02-28 19:00:03,947", - "created": 1614535203.9473686, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,457", + "created": 1742744828.4572551, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -182249,300 +30340,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 6d 73", "module": "__init__", - "msecs": 947.3686218261719, + "msecs": 457.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12434.93628501892, + "relativeCreated": 12360.941886901855, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,947", - "created": 1614535203.9477122, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 947.7121829986572, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12435.279846191406, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:03,947", - "created": 1614535203.9479532, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 947.9532241821289, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12435.520887374878, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,948", - "created": 1614535203.9481905, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 948.190450668335, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12435.758113861084, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,948", - "created": 1614535203.948359, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 948.3590126037598, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12435.926675796509, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,948", - "created": 1614535203.9486384, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 948.6384391784668, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12436.206102371216, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,948", - "created": 1614535203.9488235, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 948.8234519958496, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12436.391115188599, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,949", - "created": 1614535203.9490566, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 949.0566253662109, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12436.62428855896, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,949", - "created": 1614535203.949207, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 949.207067489624, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12436.774730682373, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,949", - "created": 1614535203.9494052, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 949.4051933288574, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12436.972856521606, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,949", - "created": 1614535203.949552, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 949.552059173584, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12437.119722366333, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "comm-client:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-02-28 19:00:03,949", - "created": 1614535203.949905, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,458", + "created": 1742744828.4582002, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -182551,25 +30366,24 @@ "lineno": 284, "message": "comm-client: TX -> (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 949.9049186706543, + "msecs": 458.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12437.472581863403, + "relativeCreated": 12361.886978149414, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "comm-server:", "(32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e" ], - "asctime": "2021-02-28 19:00:03,954", - "created": 1614535203.9543571, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,462", + "created": 1742744828.4627094, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -182578,98 +30392,16 @@ "lineno": 414, "message": "comm-server: RX <- (32): 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b 3a 3e", "module": "__init__", - "msecs": 954.3571472167969, + "msecs": 462.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12441.924810409546, + "relativeCreated": 12366.396188735962, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,954", - "created": 1614535203.9548788, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 954.8788070678711, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12442.44647026062, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:03,955", - "created": 1614535203.9550815, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 955.0814628601074, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12442.649126052856, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" - }, - { - "args": [ - "STP:", - "(88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b" - ], - "asctime": "2021-02-28 19:00:03,955", - "created": 1614535203.9554431, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (88): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 37 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 4c bc bd 1b", - "module": "stp", - "msecs": 955.4431438446045, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12443.010807037354, - "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ @@ -182679,53 +30411,51 @@ "status: okay", "'msg1_data_to_be_transfered'" ], - "asctime": "2021-02-28 19:00:03,955", - "created": 1614535203.9558942, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,463", + "created": 1742744828.463742, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", "module": "__init__", - "msecs": 955.8942317962646, + "msecs": 463.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12443.461894989014, + "relativeCreated": 12367.42877960205, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:03,956", - "created": 1614535203.9561229, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,464", + "created": 1742744828.464029, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 486, + "lineno": 484, "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 956.122875213623, + "msecs": 464.0, "msg": "%s Incomming message with no registered callback. Sending negative response.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12443.690538406372, + "relativeCreated": 12367.715835571289, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ @@ -182735,36 +30465,34 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-02-28 19:00:03,956", - "created": 1614535203.956403, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,464", + "created": 1742744828.4643633, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 956.4030170440674, + "msecs": 464.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12443.970680236816, + "relativeCreated": 12368.05009841919, "stack_info": null, - "thread": 140380183975680, - "threadName": "Thread-15" + "thread": 140630248388288, + "threadName": "Thread-15 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" ], - "asctime": "2021-02-28 19:00:03,957", - "created": 1614535203.957319, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,465", + "created": 1742744828.4658237, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -182773,25 +30501,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", "module": "__init__", - "msecs": 957.3190212249756, + "msecs": 465.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12444.886684417725, + "relativeCreated": 12369.510412216187, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c" ], - "asctime": "2021-02-28 19:00:03,965", - "created": 1614535203.9658787, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,474", + "created": 1742744828.474702, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -182800,300 +30527,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c", "module": "__init__", - "msecs": 965.8787250518799, + "msecs": 474.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12453.446388244629, + "relativeCreated": 12378.38864326477, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,966", - "created": 1614535203.9661925, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 966.1924839019775, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12453.760147094727, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:03,966", - "created": 1614535203.966362, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 966.3619995117188, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12453.929662704468, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,966", - "created": 1614535203.9665627, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 966.5627479553223, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12454.130411148071, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,966", - "created": 1614535203.966707, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 966.7069911956787, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12454.274654388428, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,966", - "created": 1614535203.9669151, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 966.9151306152344, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12454.482793807983, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,967", - "created": 1614535203.9670753, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 967.0753479003906, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12454.64301109314, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,967", - "created": 1614535203.9672654, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 967.2653675079346, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12454.833030700684, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,967", - "created": 1614535203.967407, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 967.4069881439209, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12454.97465133667, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,967", - "created": 1614535203.9675796, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 967.5796031951904, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12455.14726638794, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:03,967", - "created": 1614535203.9677055, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 967.705488204956, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12455.273151397705, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" }, { "args": [ "comm-server:", "(8): 6c 7d bd 30 46 9b 3a 3e" ], - "asctime": "2021-02-28 19:00:03,967", - "created": 1614535203.967956, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,475", + "created": 1742744828.4755623, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -183102,25 +30553,24 @@ "lineno": 284, "message": "comm-server: TX -> (8): 6c 7d bd 30 46 9b 3a 3e", "module": "__init__", - "msecs": 967.9560661315918, + "msecs": 475.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12455.52372932434, + "relativeCreated": 12379.249095916748, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" }, { "args": [ "comm-client:", "(8): 6c 7d bd 30 46 9b 3a 3e" ], - "asctime": "2021-02-28 19:00:03,969", - "created": 1614535203.969277, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,477", + "created": 1742744828.4770482, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -183129,98 +30579,16 @@ "lineno": 414, "message": "comm-client: RX <- (8): 6c 7d bd 30 46 9b 3a 3e", "module": "__init__", - "msecs": 969.2769050598145, + "msecs": 477.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12456.844568252563, + "relativeCreated": 12380.734920501709, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:03,969", - "created": 1614535203.9695473, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 969.5472717285156, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12457.114934921265, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:03,969", - "created": 1614535203.9697511, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 969.7511196136475, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12457.318782806396, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" - }, - { - "args": [ - "STP:", - "(64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 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 bd 30 46 9b" - ], - "asctime": "2021-02-28 19:00:03,969", - "created": 1614535203.9699998, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (64): 7b 22 64 61 74 61 5f 69 64 22 3a 20 33 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 38 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 bd 30 46 9b", - "module": "stp", - "msecs": 969.9997901916504, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 12457.5674533844, - "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" }, { "args": [ @@ -183230,81 +30598,78 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-02-28 19:00:03,970", - "created": 1614535203.9703755, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,477", + "created": 1742744828.477824, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: 18, data_id: 34, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 970.3755378723145, + "msecs": 477.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12457.943201065063, + "relativeCreated": 12381.510734558105, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:03,970", - "created": 1614535203.970597, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,478", + "created": 1742744828.4781818, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 970.5970287322998, + "msecs": 478.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12458.164691925049, + "relativeCreated": 12381.868600845337, "stack_info": null, - "thread": 140380175582976, - "threadName": "Thread-16" + "thread": 140630239995584, + "threadName": "Thread-16 (_start)" } ], - "msecs": 139.2195224761963, + "msecs": 649.0, "msg": "Transfering a message client -> server -> client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_communication.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12626.787185668945, + "relativeCreated": 12552.754878997803, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.16862249374389648 + "time_consumption": 0.17088627815246582 }, { "args": [ "True", "" ], - "asctime": "2021-02-28 19:00:04,140", - "created": 1614535204.1403127, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,650", + "created": 1742744828.6501608, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", "module": "test", "moduleLogger": [ @@ -183314,9 +30679,8 @@ "True", "" ], - "asctime": "2021-02-28 19:00:04,139", - "created": 1614535204.1398604, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,649", + "created": 1742744828.6496708, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -183325,72 +30689,71 @@ "lineno": 22, "message": "Result (Returnvalue of Client send Method): True ()", "module": "test", - "msecs": 139.8603916168213, + "msecs": 649.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12627.42805480957, + "relativeCreated": 12553.357601165771, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Returnvalue of Client send Method", + "=", "True", "" ], - "asctime": "2021-02-28 19:00:04,140", - "created": 1614535204.140105, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,649", + "created": 1742744828.6499107, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Returnvalue of Client send Method): result = True ()", "module": "test", - "msecs": 140.1050090789795, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 649.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12627.672672271729, + "relativeCreated": 12553.597450256348, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 140.31267166137695, + "msecs": 650.0, "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12627.880334854126, + "relativeCreated": 12553.847551345825, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00020766258239746094 + "time_consumption": 0.00025010108947753906 }, { "args": [ "{'data_id': 34, 'service_id': 18, 'status': 1, 'data': None}", "" ], - "asctime": "2021-02-28 19:00:04,141", - "created": 1614535204.1410842, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,650", + "created": 1742744828.6509435, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 18, 'status': 1, 'data': None} and Type is ).", "module": "test", "moduleLogger": [ @@ -183400,9 +30763,8 @@ "{'data_id': 34, 'service_id': 18, 'status': 1, 'data': None}", "" ], - "asctime": "2021-02-28 19:00:04,140", - "created": 1614535204.140678, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,650", + "created": 1742744828.6505358, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -183411,93 +30773,91 @@ "lineno": 22, "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 18, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 140.67792892456055, + "msecs": 650.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12628.24559211731, + "relativeCreated": 12554.222583770752, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Received message on server side", + "=", "{'service_id': 18, 'data_id': 34, 'status': 1, 'data': None}", "" ], - "asctime": "2021-02-28 19:00:04,140", - "created": 1614535204.1408935, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,650", + "created": 1742744828.6507459, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Received message on server side): result = {'service_id': 18, 'data_id': 34, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 140.89345932006836, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 650.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12628.461122512817, + "relativeCreated": 12554.43263053894, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 141.0841941833496, + "msecs": 650.0, "msg": "Received message on server side is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12628.651857376099, + "relativeCreated": 12554.630279541016, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00019073486328125 + "time_consumption": 0.0001976490020751953 } ], - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.8659451007843018, - "time_finished": "2021-02-28 19:00:04,141", - "time_start": "2021-02-28 19:00:03,275" + "time_consumption": 0.8676745891571045, + "time_finished": "2025-03-23 16:47:08,650", + "time_start": "2025-03-23 16:47:07,783" }, - "_k7opsE4LEeupHeIYRnC0qw": { + "REQ-0012": { "args": null, - "asctime": "2021-02-28 19:00:06,596", - "created": 1614535206.5969763, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,651", + "created": 1742744828.6517196, "exc_text": null, "filename": "__init__.py", - "funcName": "testrun", + "funcName": "testCase", "levelname": "INFO", "levelno": 20, - "lineno": 48, - "message": "_k7opsE4LEeupHeIYRnC0qw", + "lineno": 327, + "message": "REQ-0012", "module": "__init__", "moduleLogger": [], - "msecs": 596.9762802124023, - "msg": "_k7opsE4LEeupHeIYRnC0qw", + "msecs": 651.0, + "msg": "REQ-0012", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15084.543943405151, + "relativeCreated": 12555.406332015991, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-02-28 19:00:06,607", - "created": 1614535206.607187, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6613245, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -183511,9 +30871,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:06,598", - "created": 1614535206.5983825, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,653", + "created": 1742744828.653151, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -183522,24 +30881,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 598.3824729919434, + "msecs": 653.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15085.950136184692, + "relativeCreated": 12556.837797164917, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:06,599", - "created": 1614535206.5995598, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,654", + "created": 1742744828.6549876, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -183548,24 +30906,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 599.5597839355469, + "msecs": 654.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15087.127447128296, + "relativeCreated": 12558.674335479736, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:06,599", - "created": 1614535206.5998504, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,655", + "created": 1742744828.6553123, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", @@ -183574,41 +30931,40 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 599.8504161834717, + "msecs": 655.0, "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15087.41807937622, + "relativeCreated": 12558.999061584473, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:06,600", - "created": 1614535206.6002471, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,655", + "created": 1742744828.6557207, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 600.2471446990967, + "msecs": 655.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15087.814807891846, + "relativeCreated": 12559.407472610474, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183617,26 +30973,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:06,600", - "created": 1614535206.6004908, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,655", + "created": 1742744828.655957, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 600.4908084869385, + "msecs": 655.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15088.058471679688, + "relativeCreated": 12559.643745422363, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183644,9 +30999,8 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:06,600", - "created": 1614535206.6007643, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,656", + "created": 1742744828.6562345, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -183655,15 +31009,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 600.764274597168, + "msecs": 656.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15088.331937789917, + "relativeCreated": 12559.921264648438, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183671,9 +31025,8 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:06,600", - "created": 1614535206.6009684, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,656", + "created": 1742744828.6564474, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -183682,15 +31035,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 600.9683609008789, + "msecs": 656.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15088.536024093628, + "relativeCreated": 12560.134172439575, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183698,9 +31051,8 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:06,601", - "created": 1614535206.6011407, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,656", + "created": 1742744828.6566446, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -183709,15 +31061,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 601.1407375335693, + "msecs": 656.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15088.708400726318, + "relativeCreated": 12560.331344604492, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183725,9 +31077,8 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:06,601", - "created": 1614535206.6013024, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,656", + "created": 1742744828.6568358, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -183736,15 +31087,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 601.3023853302002, + "msecs": 656.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15088.87004852295, + "relativeCreated": 12560.522556304932, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183754,26 +31105,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:06,601", - "created": 1614535206.6014974, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,657", + "created": 1742744828.6570647, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 601.4974117279053, + "msecs": 657.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15089.065074920654, + "relativeCreated": 12560.75143814087, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183783,26 +31133,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:06,601", - "created": 1614535206.6017206, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,657", + "created": 1742744828.6572795, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 601.7205715179443, + "msecs": 657.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15089.288234710693, + "relativeCreated": 12560.96625328064, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183812,26 +31161,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:06,601", - "created": 1614535206.601911, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,657", + "created": 1742744828.6574967, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 601.9110679626465, + "msecs": 657.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15089.478731155396, + "relativeCreated": 12561.183452606201, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183841,52 +31189,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:06,602", - "created": 1614535206.602084, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,657", + "created": 1742744828.6577024, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 602.0839214324951, + "msecs": 657.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15089.651584625244, + "relativeCreated": 12561.389207839966, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:06,602", - "created": 1614535206.6022453, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,657", + "created": 1742744828.6578848, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 602.2453308105469, + "msecs": 657.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15089.812994003296, + "relativeCreated": 12561.571598052979, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183895,26 +31241,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:06,602", - "created": 1614535206.602466, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,658", + "created": 1742744828.6581237, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 602.4661064147949, + "msecs": 658.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15090.033769607544, + "relativeCreated": 12561.810493469238, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183922,9 +31267,8 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:06,602", - "created": 1614535206.6027734, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,658", + "created": 1742744828.6583457, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -183933,15 +31277,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 602.7734279632568, + "msecs": 658.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15090.341091156006, + "relativeCreated": 12562.032461166382, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183949,9 +31293,8 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:06,602", - "created": 1614535206.6029758, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,658", + "created": 1742744828.658537, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -183960,15 +31303,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 602.9758453369141, + "msecs": 658.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15090.543508529663, + "relativeCreated": 12562.223672866821, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -183978,26 +31321,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:06,603", - "created": 1614535206.6031294, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,658", + "created": 1742744828.6587408, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 603.1293869018555, + "msecs": 658.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15090.697050094604, + "relativeCreated": 12562.427520751953, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184007,26 +31349,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:06,603", - "created": 1614535206.6032903, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,658", + "created": 1742744828.6589446, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 603.290319442749, + "msecs": 658.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15090.857982635498, + "relativeCreated": 12562.631368637085, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184035,26 +31376,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:06,603", - "created": 1614535206.6034446, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,659", + "created": 1742744828.6591394, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 603.4445762634277, + "msecs": 659.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15091.012239456177, + "relativeCreated": 12562.826156616211, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184063,26 +31403,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:06,603", - "created": 1614535206.6035833, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,659", + "created": 1742744828.6593907, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 603.5833358764648, + "msecs": 659.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15091.150999069214, + "relativeCreated": 12563.077449798584, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184091,78 +31430,75 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:06,603", - "created": 1614535206.6037166, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,659", + "created": 1742744828.65958, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 603.7166118621826, + "msecs": 659.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15091.284275054932, + "relativeCreated": 12563.26675415039, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:06,603", - "created": 1614535206.603853, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,659", + "created": 1742744828.65978, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 603.8529872894287, + "msecs": 659.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15091.420650482178, + "relativeCreated": 12563.466787338257, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:06,604", - "created": 1614535206.6041296, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6601803, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 604.1295528411865, + "msecs": 660.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15091.697216033936, + "relativeCreated": 12563.867092132568, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184171,26 +31507,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:06,604", - "created": 1614535206.604287, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6602674, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 604.2869091033936, + "msecs": 660.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15091.854572296143, + "relativeCreated": 12563.95411491394, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184198,9 +31533,8 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:06,604", - "created": 1614535206.6044974, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.660342, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -184209,15 +31543,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 604.4974327087402, + "msecs": 660.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15092.06509590149, + "relativeCreated": 12564.0287399292, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184225,9 +31559,8 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:06,604", - "created": 1614535206.6046562, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6603997, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -184236,15 +31569,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 604.6562194824219, + "msecs": 660.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15092.22388267517, + "relativeCreated": 12564.086437225342, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184252,9 +31585,8 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:06,604", - "created": 1614535206.604796, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6604533, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -184263,15 +31595,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 604.7959327697754, + "msecs": 660.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15092.363595962524, + "relativeCreated": 12564.14008140564, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184279,9 +31611,8 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:06,604", - "created": 1614535206.6049337, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6605058, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -184290,15 +31621,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 604.9337387084961, + "msecs": 660.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15092.501401901245, + "relativeCreated": 12564.192533493042, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184308,26 +31639,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:06,605", - "created": 1614535206.6050801, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.660562, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 605.0801277160645, + "msecs": 660.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15092.647790908813, + "relativeCreated": 12564.24880027771, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184337,26 +31667,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:06,605", - "created": 1614535206.6052418, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6606193, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 605.2417755126953, + "msecs": 660.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15092.809438705444, + "relativeCreated": 12564.306020736694, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184366,26 +31695,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:06,605", - "created": 1614535206.605403, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6606817, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 605.402946472168, + "msecs": 660.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15092.970609664917, + "relativeCreated": 12564.368486404419, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184395,52 +31723,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:06,605", - "created": 1614535206.605552, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6607382, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 605.5519580841064, + "msecs": 660.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15093.119621276855, + "relativeCreated": 12564.424991607666, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:06,605", - "created": 1614535206.6057138, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.660789, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 605.7138442993164, + "msecs": 660.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15093.281507492065, + "relativeCreated": 12564.475774765015, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184449,26 +31775,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:06,605", - "created": 1614535206.6058733, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6608427, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 605.8733463287354, + "msecs": 660.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15093.441009521484, + "relativeCreated": 12564.529418945312, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184476,9 +31801,8 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:06,606", - "created": 1614535206.6060445, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6609013, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -184487,15 +31811,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 606.0445308685303, + "msecs": 660.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15093.61219406128, + "relativeCreated": 12564.588069915771, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184503,9 +31827,8 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:06,606", - "created": 1614535206.6061883, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,660", + "created": 1742744828.6609545, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -184514,15 +31837,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 606.1882972717285, + "msecs": 660.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15093.755960464478, + "relativeCreated": 12564.641237258911, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184532,26 +31855,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:06,606", - "created": 1614535206.606335, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6610115, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 606.334924697876, + "msecs": 661.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15093.902587890625, + "relativeCreated": 12564.698219299316, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184561,26 +31883,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:06,606", - "created": 1614535206.6064844, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.661067, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 606.4844131469727, + "msecs": 661.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15094.052076339722, + "relativeCreated": 12564.753770828247, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184589,26 +31910,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:06,606", - "created": 1614535206.6066377, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6611197, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 606.637716293335, + "msecs": 661.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15094.205379486084, + "relativeCreated": 12564.806461334229, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184617,26 +31937,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:06,606", - "created": 1614535206.6067748, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6611707, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 606.7748069763184, + "msecs": 661.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15094.342470169067, + "relativeCreated": 12564.857482910156, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184645,72 +31964,69 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:06,606", - "created": 1614535206.6069078, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.661222, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 606.907844543457, + "msecs": 661.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15094.475507736206, + "relativeCreated": 12564.908742904663, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:06,607", - "created": 1614535206.6070554, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.661275, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 607.0554256439209, + "msecs": 661.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15094.62308883667, + "relativeCreated": 12564.961671829224, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 607.187032699585, + "msecs": 661.0, "msg": "Setting up communication", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15094.754695892334, + "relativeCreated": 12565.011262893677, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001316070556640625 + "time_consumption": 4.9591064453125e-05 }, { "args": [], - "asctime": "2021-02-28 19:00:06,952", - "created": 1614535206.9524367, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,005", + "created": 1742744829.0054016, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -184724,9 +32040,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:06,607", - "created": 1614535206.6076467, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6614475, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -184735,24 +32050,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 607.6467037200928, + "msecs": 661.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15095.214366912842, + "relativeCreated": 12565.134286880493, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:06,607", - "created": 1614535206.607823, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6615012, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -184761,41 +32075,40 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 607.8228950500488, + "msecs": 661.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15095.390558242798, + "relativeCreated": 12565.187931060791, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:06,607", - "created": 1614535206.6079698, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6615543, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 607.9697608947754, + "msecs": 661.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15095.537424087524, + "relativeCreated": 12565.24109840393, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184806,35 +32119,33 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:06,608", - "created": 1614535206.6082318, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.661643, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 608.231782913208, + "msecs": 661.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15095.799446105957, + "relativeCreated": 12565.329790115356, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:06,608", - "created": 1614535206.608808, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6618376, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -184843,24 +32154,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 608.8080406188965, + "msecs": 661.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15096.375703811646, + "relativeCreated": 12565.524339675903, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:06,608", - "created": 1614535206.6089785, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,661", + "created": 1742744828.6619232, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -184869,41 +32179,40 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 608.9785099029541, + "msecs": 661.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15096.546173095703, + "relativeCreated": 12565.6099319458, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:06,609", - "created": 1614535206.6091259, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,662", + "created": 1742744828.6620152, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 609.1258525848389, + "msecs": 662.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15096.693515777588, + "relativeCreated": 12565.701961517334, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -184911,9 +32220,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:06,609", - "created": 1614535206.6098926, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,662", + "created": 1742744828.662231, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -184922,25 +32230,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 609.8926067352295, + "msecs": 662.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15097.460269927979, + "relativeCreated": 12565.91773033142, "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" + "thread": 140630231602880, + "threadName": "Thread-17 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:06,618", - "created": 1614535206.6184616, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,670", + "created": 1742744828.6703699, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -184949,300 +32256,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 618.4616088867188, + "msecs": 670.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15106.029272079468, + "relativeCreated": 12574.056625366211, "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,618", - "created": 1614535206.6187782, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 618.7782287597656, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15106.345891952515, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:06,618", - "created": 1614535206.618976, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 618.9761161804199, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15106.543779373169, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,619", - "created": 1614535206.619181, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 619.1809177398682, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15106.748580932617, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,619", - "created": 1614535206.619321, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 619.3211078643799, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15106.888771057129, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,619", - "created": 1614535206.6195238, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 619.5237636566162, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15107.091426849365, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,619", - "created": 1614535206.6196527, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 619.6527481079102, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15107.22041130066, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,619", - "created": 1614535206.6198316, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 619.8315620422363, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15107.399225234985, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,619", - "created": 1614535206.619958, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 619.9579238891602, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15107.52558708191, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,620", - "created": 1614535206.6201308, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 620.1307773590088, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15107.698440551758, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,620", - "created": 1614535206.6202729, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 620.2728748321533, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15107.840538024902, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" + "thread": 140630231602880, + "threadName": "Thread-17 (_start)" }, { "args": [ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:06,620", - "created": 1614535206.6205285, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,670", + "created": 1742744828.6706455, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -185251,25 +32282,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 620.5284595489502, + "msecs": 670.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15108.0961227417, + "relativeCreated": 12574.332237243652, "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" + "thread": 140630231602880, + "threadName": "Thread-17 (_start)" }, { "args": [ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:06,621", - "created": 1614535206.6216123, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,671", + "created": 1742744828.6715832, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -185278,98 +32308,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 621.6123104095459, + "msecs": 671.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15109.179973602295, + "relativeCreated": 12575.269937515259, "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,621", - "created": 1614535206.6219068, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 621.9067573547363, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15109.474420547485, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:06,622", - "created": 1614535206.6220956, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 622.0955848693848, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15109.663248062134, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:06,622", - "created": 1614535206.6223404, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 622.3404407501221, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15109.908103942871, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" + "thread": 140630231602880, + "threadName": "Thread-17 (_start)" }, { "args": [ @@ -185379,54 +32327,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:06,622", - "created": 1614535206.622719, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,671", + "created": 1742744828.6718173, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 622.7190494537354, + "msecs": 671.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15110.286712646484, + "relativeCreated": 12575.504064559937, "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" + "thread": 140630231602880, + "threadName": "Thread-17 (_start)" }, { "args": [ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-02-28 19:00:06,622", - "created": 1614535206.6229103, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,671", + "created": 1742744828.6718993, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 622.9102611541748, + "msecs": 671.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15110.477924346924, + "relativeCreated": 12575.586080551147, "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" + "thread": 140630231602880, + "threadName": "Thread-17 (_start)" }, { "args": [ @@ -185436,36 +32382,34 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:06,623", - "created": 1614535206.6231713, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,671", + "created": 1742744828.671994, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 623.171329498291, + "msecs": 671.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15110.73899269104, + "relativeCreated": 12575.68073272705, "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" + "thread": 140630231602880, + "threadName": "Thread-17 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:06,624", - "created": 1614535206.6241431, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,672", + "created": 1742744828.6722693, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -185474,25 +32418,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 624.143123626709, + "msecs": 672.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15111.710786819458, + "relativeCreated": 12575.956106185913, "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" + "thread": 140630223210176, + "threadName": "Thread-18 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:06,632", - "created": 1614535206.6326919, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,680", + "created": 1742744828.6804926, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -185501,300 +32444,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 632.6918601989746, + "msecs": 680.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15120.259523391724, + "relativeCreated": 12584.179401397705, "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,633", - "created": 1614535206.6330256, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 633.0256462097168, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15120.593309402466, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:06,633", - "created": 1614535206.6332014, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 633.2013607025146, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15120.769023895264, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,633", - "created": 1614535206.633401, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 633.4009170532227, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15120.968580245972, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,633", - "created": 1614535206.6335368, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 633.5368156433105, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15121.10447883606, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,633", - "created": 1614535206.6338346, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 633.8346004486084, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15121.402263641357, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,633", - "created": 1614535206.6339955, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 633.995532989502, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15121.563196182251, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,634", - "created": 1614535206.634182, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 634.1819763183594, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15121.749639511108, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,634", - "created": 1614535206.6343145, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 634.3145370483398, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15121.882200241089, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,634", - "created": 1614535206.6344867, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 634.4866752624512, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15122.0543384552, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,634", - "created": 1614535206.634614, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 634.6139907836914, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15122.18165397644, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" + "thread": 140630223210176, + "threadName": "Thread-18 (_start)" }, { "args": [ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:06,634", - "created": 1614535206.634867, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,680", + "created": 1742744828.6808183, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -185803,25 +32470,24 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 634.8669528961182, + "msecs": 680.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15122.434616088867, + "relativeCreated": 12584.505081176758, "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" + "thread": 140630223210176, + "threadName": "Thread-18 (_start)" }, { "args": [ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:06,635", - "created": 1614535206.6359441, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,681", + "created": 1742744828.681776, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -185830,98 +32496,16 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 635.944128036499, + "msecs": 681.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15123.511791229248, + "relativeCreated": 12585.462808609009, "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,636", - "created": 1614535206.6362083, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 636.2082958221436, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15123.775959014893, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:06,636", - "created": 1614535206.6363769, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 636.3768577575684, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15123.944520950317, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:06,636", - "created": 1614535206.6366186, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 636.6186141967773, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15124.186277389526, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" + "thread": 140630223210176, + "threadName": "Thread-18 (_start)" }, { "args": [ @@ -185931,1461 +32515,255 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:06,636", - "created": 1614535206.6369915, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,682", + "created": 1742744828.682085, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 636.9915008544922, + "msecs": 682.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15124.559164047241, + "relativeCreated": 12585.771799087524, "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" + "thread": 140630223210176, + "threadName": "Thread-18 (_start)" }, { "args": [ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-02-28 19:00:06,637", - "created": 1614535206.637182, - "exc_info": null, + "asctime": "2025-03-23 16:47:08,682", + "created": 1742744828.6821895, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 637.1819972991943, + "msecs": 682.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15124.749660491943, + "relativeCreated": 12585.87622642517, "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" + "thread": 140630223210176, + "threadName": "Thread-18 (_start)" } ], - "msecs": 952.4366855621338, + "msecs": 5.0, "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15440.004348754883, + "relativeCreated": 12909.088373184204, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.31525468826293945 + "time_consumption": 0.3232121467590332 }, { "args": [], - "asctime": "2021-02-28 19:00:06,953", - "created": 1614535206.9533553, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,006", + "created": 1742744829.00651, "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_callback", + "filename": "test_communication.py", + "funcName": "add_service_existing_sid", "levelname": "DEBUG", "levelno": 10, - "lineno": 158, - "message": "Registering a correct working Callback", - "module": "test_callbacks", + "lineno": 334, + "message": "Adding a service with an already registered request SID", + "module": "test_communication", "moduleLogger": [ { "args": [ "prot-server:", - "'__callback__'", - "None", - "None" + 10, + 18 ], - "asctime": "2021-02-28 19:00:06,953", - "created": 1614535206.953117, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,006", + "created": 1742744829.0062163, "exc_text": null, "filename": "__init__.py", - "funcName": "add", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 170, - "message": "prot-server: Adding callback '__callback__' for SID=None and DID=None", + "funcName": "add_service", + "levelname": "ERROR", + "levelno": 40, + "lineno": 584, + "message": "prot-server: Service with Request-SID=10 and Response-SID=18 not added, because request SID is already registered", "module": "__init__", - "msecs": 953.1168937683105, - "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "msecs": 6.0, + "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because request SID is already registered", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15440.68455696106, + "relativeCreated": 12909.903049468994, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 953.3553123474121, - "msg": "Registering a correct working Callback", + "msecs": 6.0, + "msg": "Adding a service with an already registered request SID", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15440.922975540161, + "relativeCreated": 12910.196781158447, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0002384185791015625 + "time_consumption": 0.000293731689453125 }, { "args": [], - "asctime": "2021-02-28 19:00:07,155", - "created": 1614535207.1554966, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,006", + "created": 1742744829.0068502, "exc_text": null, - "filename": "test_callbacks.py", - "funcName": "all_callback", + "filename": "test_communication.py", + "funcName": "add_service_existing_sid", + "levelname": "INFO", + "levelno": 20, + "lineno": 335, + "message": "Expected Exception RequestSidExistsError was triggered", + "module": "test_communication", + "moduleLogger": [], + "msecs": 6.0, + "msg": "Expected Exception RequestSidExistsError was triggered", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 12910.537004470825, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:09,007", + "created": 1742744829.0074158, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "add_service_existing_sid", "levelname": "DEBUG", "levelno": 10, - "lineno": 161, - "message": "Transfering data", - "module": "test_callbacks", + "lineno": 343, + "message": "Adding a service with an already registered response SID", + "module": "test_communication", "moduleLogger": [ { "args": [ - "prot-client:", - "TX ->", - "service: read data request, data_id: 0", - "status: okay", - "31" + "prot-server:", + 17, + 11 ], - "asctime": "2021-02-28 19:00:06,953", - "created": 1614535206.9538136, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,007", + "created": 1742744829.0071945, "exc_text": null, "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", + "funcName": "add_service", + "levelname": "ERROR", + "levelno": 40, + "lineno": 588, + "message": "prot-server: Service with Request-SID=17 and Response-SID=11 not added, because response SID is already registered", "module": "__init__", - "msecs": 953.8135528564453, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "msecs": 7.0, + "msg": "%s Service with Request-SID=%d and Response-SID=%d not added, because response SID is already registered", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15441.381216049194, + "relativeCreated": 12910.881280899048, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" - ], - "asctime": "2021-02-28 19:00:06,955", - "created": 1614535206.9550428, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", - "module": "__init__", - "msecs": 955.042839050293, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15442.610502243042, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" - ], - "asctime": "2021-02-28 19:00:06,963", - "created": 1614535206.9637494, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", - "module": "__init__", - "msecs": 963.7494087219238, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15451.317071914673, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,964", - "created": 1614535206.964142, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 964.1420841217041, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15451.709747314453, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:06,964", - "created": 1614535206.9643455, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 964.3454551696777, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15451.913118362427, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,964", - "created": 1614535206.9646297, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 964.6296501159668, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15452.197313308716, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,964", - "created": 1614535206.9647992, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 964.799165725708, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15452.366828918457, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,965", - "created": 1614535206.9650345, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 965.0344848632812, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15452.60214805603, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,965", - "created": 1614535206.9651845, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 965.1844501495361, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15452.752113342285, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,965", - "created": 1614535206.9654171, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 965.4171466827393, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15452.984809875488, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,965", - "created": 1614535206.9655666, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 965.5666351318359, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15453.134298324585, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,965", - "created": 1614535206.9658215, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 965.8215045928955, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15453.389167785645, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,965", - "created": 1614535206.9659758, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 965.9757614135742, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15453.543424606323, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-client:", - "(5): 5b f5 78 3a 3e" - ], - "asctime": "2021-02-28 19:00:06,966", - "created": 1614535206.9662597, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", - "module": "__init__", - "msecs": 966.2597179412842, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15453.827381134033, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(5): 5b f5 78 3a 3e" - ], - "asctime": "2021-02-28 19:00:06,967", - "created": 1614535206.9672556, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", - "module": "__init__", - "msecs": 967.2555923461914, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15454.82325553894, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,967", - "created": 1614535206.9675586, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 967.5586223602295, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15455.126285552979, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:06,967", - "created": 1614535206.9677582, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 967.7581787109375, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15455.325841903687, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:06,968", - "created": 1614535206.96806, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 968.0600166320801, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15455.62767982483, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "RX <-", - "service: read data request, data_id: 0", - "status: okay", - "31" - ], - "asctime": "2021-02-28 19:00:06,968", - "created": 1614535206.968492, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", - "module": "__init__", - "msecs": 968.4920310974121, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15456.059694290161, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "__callback__" - ], - "asctime": "2021-02-28 19:00:06,968", - "created": 1614535206.9687223, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__data_available_callback__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 490, - "message": "prot-server: Executing callback __callback__ to process received data", - "module": "__init__", - "msecs": 968.7223434448242, - "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15456.290006637573, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "prot-server:", - "TX ->", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 19:00:06,969", - "created": 1614535206.9690008, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 969.0008163452148, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15456.568479537964, - "stack_info": null, - "thread": 140379621926656, - "threadName": "Thread-25" - }, - { - "args": [ - "comm-server:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" - ], - "asctime": "2021-02-28 19:00:06,970", - "created": 1614535206.970282, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", - "module": "__init__", - "msecs": 970.2820777893066, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15457.849740982056, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-client:", - "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" - ], - "asctime": "2021-02-28 19:00:06,978", - "created": 1614535206.978788, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", - "module": "__init__", - "msecs": 978.787899017334, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15466.355562210083, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,979", - "created": 1614535206.9791002, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 979.100227355957, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15466.667890548706, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:06,979", - "created": 1614535206.979305, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 979.3050289154053, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15466.872692108154, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,979", - "created": 1614535206.9795096, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 979.5095920562744, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15467.077255249023, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,979", - "created": 1614535206.979662, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 979.6619415283203, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15467.22960472107, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,979", - "created": 1614535206.9798808, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 979.8808097839355, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15467.448472976685, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,980", - "created": 1614535206.9804802, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 980.4801940917969, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15468.047857284546, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,980", - "created": 1614535206.9806836, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 980.6835651397705, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15468.25122833252, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,980", - "created": 1614535206.9808173, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 980.8173179626465, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15468.384981155396, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,980", - "created": 1614535206.9809902, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 980.9901714324951, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15468.557834625244, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:06,981", - "created": 1614535206.9811192, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 981.1191558837891, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15468.686819076538, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-server:", - "(5): e1 8c bb 3a 3e" - ], - "asctime": "2021-02-28 19:00:06,981", - "created": 1614535206.9813707, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__tx__", - "levelname": "INFO", - "levelno": 20, - "lineno": 284, - "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", - "module": "__init__", - "msecs": 981.3706874847412, - "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15468.93835067749, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "comm-client:", - "(5): e1 8c bb 3a 3e" - ], - "asctime": "2021-02-28 19:00:06,982", - "created": 1614535206.982345, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__rx__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 414, - "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", - "module": "__init__", - "msecs": 982.3451042175293, - "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15469.912767410278, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:06,982", - "created": 1614535206.982606, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 982.6059341430664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15470.173597335815, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:06,982", - "created": 1614535206.9827778, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 982.7778339385986, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15470.345497131348, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" - ], - "asctime": "2021-02-28 19:00:06,983", - "created": 1614535206.983016, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "stp", - "msecs": 983.0160140991211, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15470.58367729187, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "prot-client:", - "RX <-", - "service: read data response, data_id: 0", - "status: okay", - "33" - ], - "asctime": "2021-02-28 19:00:06,983", - "created": 1614535206.9834027, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__log_msg__", - "levelname": "INFO", - "levelno": 20, - "lineno": 450, - "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", - "module": "__init__", - "msecs": 983.4027290344238, - "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15470.970392227173, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" - }, - { - "args": [ - "prot-client:" - ], - "asctime": "2021-02-28 19:00:06,983", - "created": 1614535206.9836233, - "exc_info": null, - "exc_text": null, - "filename": "__init__.py", - "funcName": "__buffer_received_data__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 397, - "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", - "module": "__init__", - "msecs": 983.6232662200928, - "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15471.190929412842, - "stack_info": null, - "thread": 140379613533952, - "threadName": "Thread-26" } ], - "msecs": 155.49659729003906, - "msg": "Transfering data", + "msecs": 7.0, + "msg": "Adding a service with an already registered response SID", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15643.064260482788, + "relativeCreated": 12911.102533340454, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.1718733310699463 + "time_consumption": 0.00022125244140625 }, { - "args": [ - "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", - "" - ], - "asctime": "2021-02-28 19:00:07,156", - "created": 1614535207.1566863, - "exc_info": null, + "args": [], + "asctime": "2025-03-23 16:47:09,007", + "created": 1742744829.0077147, "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", + "filename": "test_communication.py", + "funcName": "add_service_existing_sid", "levelname": "INFO", "levelno": 20, - "lineno": 144, - "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message stored inside callback", - "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", - "" - ], - "asctime": "2021-02-28 19:00:07,156", - "created": 1614535207.1561582, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", - "module": "test", - "msecs": 156.1582088470459, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15643.725872039795, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Message stored inside callback", - "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", - "" - ], - "asctime": "2021-02-28 19:00:07,156", - "created": 1614535207.1564472, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", - "module": "test", - "msecs": 156.447172164917, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15644.014835357666, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 156.68630599975586, - "msg": "Message stored inside callback is correct (Content %s and Type is %s).", + "lineno": 344, + "message": "Expected Exception ResponseSidExistsError was triggered", + "module": "test_communication", + "moduleLogger": [], + "msecs": 7.0, + "msg": "Expected Exception ResponseSidExistsError was triggered", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15644.253969192505, + "relativeCreated": 12911.401510238647, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0002391338348388672 - }, - { - "args": [ - "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", - "" - ], - "asctime": "2021-02-28 19:00:07,157", - "created": 1614535207.157412, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "equivalency_chk", - "levelname": "INFO", - "levelno": 20, - "lineno": 144, - "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} and Type is ).", - "module": "test", - "moduleLogger": [ - { - "args": [ - "Message received by client", - "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", - "" - ], - "asctime": "2021-02-28 19:00:07,157", - "created": 1614535207.1570132, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_result__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 22, - "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", - "module": "test", - "msecs": 157.0131778717041, - "msg": "Result (%s): %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15644.580841064453, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - }, - { - "args": [ - "Message received by client", - "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", - "" - ], - "asctime": "2021-02-28 19:00:07,157", - "created": 1614535207.1572244, - "exc_info": null, - "exc_text": null, - "filename": "test.py", - "funcName": "__report_expectation_equivalency__", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 26, - "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", - "module": "test", - "msecs": 157.2244167327881, - "msg": "Expectation (%s): result = %s (%s)", - "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15644.792079925537, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread" - } - ], - "msecs": 157.41205215454102, - "msg": "Message received by client is correct (Content %s and Type is %s).", - "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15644.97971534729, - "stack_info": null, - "thread": 140381150107456, - "threadName": "MainThread", - "time_consumption": 0.0001876354217529297 + "time_consumption": 0.0 } ], - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.5604357719421387, - "time_finished": "2021-02-28 19:00:07,157", - "time_start": "2021-02-28 19:00:06,596" + "time_consumption": 0.35599517822265625, + "time_finished": "2025-03-23 16:47:09,007", + "time_start": "2025-03-23 16:47:08,651" }, - "_r9srME0vEeuiHtQbLi1mZg": { + "REQ-0013": { "args": null, - "asctime": "2021-02-28 19:00:04,503", - "created": 1614535204.5032673, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,008", + "created": 1742744829.008524, "exc_text": null, "filename": "__init__.py", - "funcName": "testrun", + "funcName": "testCase", "levelname": "INFO", "levelno": 20, - "lineno": 45, - "message": "_r9srME0vEeuiHtQbLi1mZg", + "lineno": 327, + "message": "REQ-0013", "module": "__init__", "moduleLogger": [], - "msecs": 503.2672882080078, - "msg": "_r9srME0vEeuiHtQbLi1mZg", + "msecs": 8.0, + "msg": "REQ-0013", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12990.834951400757, + "relativeCreated": 12912.210702896118, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-02-28 19:00:04,513", - "created": 1614535204.5135622, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,021", + "created": 1742744829.021459, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -187399,9 +32777,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:04,504", - "created": 1614535204.5044768, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,009", + "created": 1742744829.0099554, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -187410,24 +32787,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 504.47678565979004, + "msecs": 9.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12992.044448852539, + "relativeCreated": 12913.642168045044, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:04,505", - "created": 1614535204.5057216, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,011", + "created": 1742744829.011242, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -187436,24 +32812,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 505.7215690612793, + "msecs": 11.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12993.289232254028, + "relativeCreated": 12914.928674697876, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:04,506", - "created": 1614535204.506028, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,011", + "created": 1742744829.0115716, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", @@ -187462,41 +32837,40 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 506.0279369354248, + "msecs": 11.0, "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12993.595600128174, + "relativeCreated": 12915.258407592773, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:04,506", - "created": 1614535204.506397, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,011", + "created": 1742744829.0119781, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 506.397008895874, + "msecs": 11.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12993.964672088623, + "relativeCreated": 12915.664911270142, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187505,26 +32879,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:04,506", - "created": 1614535204.5065966, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,012", + "created": 1742744829.0122132, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 506.59656524658203, + "msecs": 12.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12994.164228439331, + "relativeCreated": 12915.899991989136, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187532,9 +32905,8 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:04,506", - "created": 1614535204.5068371, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,012", + "created": 1742744829.0125034, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -187543,15 +32915,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 506.8371295928955, + "msecs": 12.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12994.404792785645, + "relativeCreated": 12916.190147399902, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187559,9 +32931,8 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:04,507", - "created": 1614535204.5070055, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,012", + "created": 1742744829.0127256, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -187570,15 +32941,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 507.0054531097412, + "msecs": 12.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12994.57311630249, + "relativeCreated": 12916.412353515625, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187586,9 +32957,8 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:04,507", - "created": 1614535204.5071628, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,012", + "created": 1742744829.0129225, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -187597,15 +32967,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 507.16280937194824, + "msecs": 12.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12994.730472564697, + "relativeCreated": 12916.609287261963, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187613,9 +32983,8 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:04,507", - "created": 1614535204.5073144, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,013", + "created": 1742744829.0131133, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -187624,15 +32993,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 507.31444358825684, + "msecs": 13.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12994.882106781006, + "relativeCreated": 12916.800022125244, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187642,26 +33011,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:04,507", - "created": 1614535204.5074847, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,013", + "created": 1742744829.0133235, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 507.48467445373535, + "msecs": 13.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12995.052337646484, + "relativeCreated": 12917.010307312012, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187671,26 +33039,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:04,507", - "created": 1614535204.5076902, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,013", + "created": 1742744829.0135362, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 507.6901912689209, + "msecs": 13.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12995.25785446167, + "relativeCreated": 12917.22297668457, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187700,26 +33067,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:04,507", - "created": 1614535204.5078688, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,013", + "created": 1742744829.0137432, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 507.86876678466797, + "msecs": 13.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12995.436429977417, + "relativeCreated": 12917.42992401123, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187729,52 +33095,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:04,508", - "created": 1614535204.5080338, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,013", + "created": 1742744829.0139446, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 508.03375244140625, + "msecs": 13.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12995.601415634155, + "relativeCreated": 12917.631387710571, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:04,508", - "created": 1614535204.5082026, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,014", + "created": 1742744829.0141659, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 508.20255279541016, + "msecs": 14.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12995.77021598816, + "relativeCreated": 12917.852640151978, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187783,26 +33147,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:04,508", - "created": 1614535204.508392, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,014", + "created": 1742744829.0143716, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 508.3920955657959, + "msecs": 14.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12995.959758758545, + "relativeCreated": 12918.058395385742, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187810,9 +33173,8 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:04,508", - "created": 1614535204.508583, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,014", + "created": 1742744829.0145853, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -187821,15 +33183,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 508.58306884765625, + "msecs": 14.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12996.150732040405, + "relativeCreated": 12918.272018432617, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187837,9 +33199,8 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:04,508", - "created": 1614535204.5087516, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,014", + "created": 1742744829.0147943, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -187848,15 +33209,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 508.75163078308105, + "msecs": 14.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12996.31929397583, + "relativeCreated": 12918.48111152649, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187866,26 +33227,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:04,508", - "created": 1614535204.5089269, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,015", + "created": 1742744829.0150068, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 508.9268684387207, + "msecs": 15.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12996.49453163147, + "relativeCreated": 12918.693542480469, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187895,26 +33255,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:04,509", - "created": 1614535204.5091147, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,015", + "created": 1742744829.0152125, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 509.11474227905273, + "msecs": 15.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12996.682405471802, + "relativeCreated": 12918.899297714233, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187923,26 +33282,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:04,509", - "created": 1614535204.5092864, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,015", + "created": 1742744829.0158155, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 509.28640365600586, + "msecs": 15.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12996.854066848755, + "relativeCreated": 12919.502258300781, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187951,26 +33309,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:04,509", - "created": 1614535204.5094492, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,016", + "created": 1742744829.0160236, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 509.4492435455322, + "msecs": 16.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12997.016906738281, + "relativeCreated": 12919.710397720337, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -187979,78 +33336,75 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:04,509", - "created": 1614535204.5096078, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,016", + "created": 1742744829.0162344, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 509.60779190063477, + "msecs": 16.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12997.175455093384, + "relativeCreated": 12919.921159744263, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:04,509", - "created": 1614535204.5098162, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,016", + "created": 1742744829.0164227, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 509.81616973876953, + "msecs": 16.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12997.383832931519, + "relativeCreated": 12920.109510421753, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,510", - "created": 1614535204.5101511, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,016", + "created": 1742744829.0167623, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 510.1511478424072, + "msecs": 16.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12997.718811035156, + "relativeCreated": 12920.449018478394, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188059,26 +33413,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:04,510", - "created": 1614535204.5103343, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,016", + "created": 1742744829.0169675, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 510.3342533111572, + "msecs": 16.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12997.901916503906, + "relativeCreated": 12920.654296875, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188086,9 +33439,8 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:04,510", - "created": 1614535204.510557, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,017", + "created": 1742744829.0172334, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -188097,15 +33449,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 510.5569362640381, + "msecs": 17.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12998.124599456787, + "relativeCreated": 12920.920133590698, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188113,9 +33465,8 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:04,510", - "created": 1614535204.510727, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,017", + "created": 1742744829.0174332, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -188124,15 +33475,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 510.7269287109375, + "msecs": 17.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12998.294591903687, + "relativeCreated": 12921.119928359985, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188140,9 +33491,8 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:04,510", - "created": 1614535204.5108914, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,017", + "created": 1742744829.0176282, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -188151,15 +33501,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 510.8914375305176, + "msecs": 17.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12998.459100723267, + "relativeCreated": 12921.31495475769, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188167,9 +33517,8 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:04,511", - "created": 1614535204.5110524, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,017", + "created": 1742744829.0178192, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -188178,15 +33527,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 511.05237007141113, + "msecs": 17.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12998.62003326416, + "relativeCreated": 12921.50592803955, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188196,26 +33545,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:04,511", - "created": 1614535204.5112352, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,018", + "created": 1742744829.0180233, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 511.23523712158203, + "msecs": 18.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12998.802900314331, + "relativeCreated": 12921.710014343262, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188225,26 +33573,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:04,511", - "created": 1614535204.5114145, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,018", + "created": 1742744829.0182672, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 511.4145278930664, + "msecs": 18.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12998.982191085815, + "relativeCreated": 12921.953916549683, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188254,26 +33601,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:04,511", - "created": 1614535204.5115879, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,018", + "created": 1742744829.0184703, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 511.58785820007324, + "msecs": 18.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12999.155521392822, + "relativeCreated": 12922.157049179077, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188283,52 +33629,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:04,511", - "created": 1614535204.511775, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,018", + "created": 1742744829.018672, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 511.77501678466797, + "msecs": 18.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12999.342679977417, + "relativeCreated": 12922.358751296997, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,511", - "created": 1614535204.5119414, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,019", + "created": 1742744829.019, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 511.94143295288086, + "msecs": 19.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12999.50909614563, + "relativeCreated": 12922.68681526184, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188337,26 +33681,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:04,512", - "created": 1614535204.5121338, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,019", + "created": 1742744829.0193622, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 512.1338367462158, + "msecs": 19.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12999.701499938965, + "relativeCreated": 12923.048973083496, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188364,9 +33707,8 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:04,512", - "created": 1614535204.5123236, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,019", + "created": 1742744829.0197334, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -188375,15 +33717,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 512.3236179351807, + "msecs": 19.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 12999.89128112793, + "relativeCreated": 12923.420190811157, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188391,9 +33733,8 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:04,512", - "created": 1614535204.5124903, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,019", + "created": 1742744829.0199888, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -188402,15 +33743,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 512.4902725219727, + "msecs": 19.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13000.057935714722, + "relativeCreated": 12923.675537109375, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188420,26 +33761,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:04,512", - "created": 1614535204.5126595, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,020", + "created": 1742744829.0202014, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 512.6595497131348, + "msecs": 20.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13000.227212905884, + "relativeCreated": 12923.888206481934, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188449,26 +33789,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:04,512", - "created": 1614535204.5128312, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,020", + "created": 1742744829.0204685, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 512.8312110900879, + "msecs": 20.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13000.398874282837, + "relativeCreated": 12924.155235290527, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188477,26 +33816,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:04,513", - "created": 1614535204.5130086, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,020", + "created": 1742744829.0206833, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 513.0085945129395, + "msecs": 20.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13000.576257705688, + "relativeCreated": 12924.370050430298, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188505,26 +33843,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:04,513", - "created": 1614535204.513145, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,020", + "created": 1742744829.0208747, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 513.1449699401855, + "msecs": 20.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13000.712633132935, + "relativeCreated": 12924.561500549316, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188533,72 +33870,69 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:04,513", - "created": 1614535204.5132802, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,021", + "created": 1742744829.021064, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 513.2801532745361, + "msecs": 21.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13000.847816467285, + "relativeCreated": 12924.750804901123, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,513", - "created": 1614535204.5134296, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,021", + "created": 1742744829.0212655, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 513.4296417236328, + "msecs": 21.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13000.997304916382, + "relativeCreated": 12924.952268600464, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 513.5622024536133, + "msecs": 21.0, "msg": "Setting up communication", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13001.129865646362, + "relativeCreated": 12925.145864486694, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00013256072998046875 + "time_consumption": 0.00019359588623046875 }, { "args": [], - "asctime": "2021-02-28 19:00:04,858", - "created": 1614535204.8587635, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,366", + "created": 1742744829.3667388, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -188612,9 +33946,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:04,513", - "created": 1614535204.5138972, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,021", + "created": 1742744829.0219157, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -188623,24 +33956,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 513.897180557251, + "msecs": 21.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13001.46484375, + "relativeCreated": 12925.602436065674, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:04,514", - "created": 1614535204.5140555, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,022", + "created": 1742744829.0221632, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -188649,41 +33981,40 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 514.0554904937744, + "msecs": 22.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13001.623153686523, + "relativeCreated": 12925.849914550781, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,514", - "created": 1614535204.5142083, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,022", + "created": 1742744829.0223877, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 514.2083168029785, + "msecs": 22.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13001.775979995728, + "relativeCreated": 12926.074504852295, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188694,35 +34025,33 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:04,514", - "created": 1614535204.5144477, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,022", + "created": 1742744829.0226722, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 514.4476890563965, + "msecs": 22.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13002.015352249146, + "relativeCreated": 12926.358938217163, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:04,515", - "created": 1614535204.515018, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,023", + "created": 1742744829.0232923, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -188731,24 +34060,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 515.0179862976074, + "msecs": 23.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13002.585649490356, + "relativeCreated": 12926.979064941406, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:04,515", - "created": 1614535204.5151877, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,023", + "created": 1742744829.023485, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -188757,41 +34085,40 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 515.1877403259277, + "msecs": 23.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13002.755403518677, + "relativeCreated": 12927.17170715332, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:04,515", - "created": 1614535204.5153365, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,023", + "created": 1742744829.0236611, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 515.3365135192871, + "msecs": 23.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13002.904176712036, + "relativeCreated": 12927.347898483276, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -188799,9 +34126,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:04,515", - "created": 1614535204.5158596, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,024", + "created": 1742744829.02417, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -188810,25 +34136,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 515.8596038818359, + "msecs": 24.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13003.427267074585, + "relativeCreated": 12927.85668373108, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:04,524", - "created": 1614535204.524458, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,032", + "created": 1742744829.0325313, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -188837,300 +34162,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 524.4579315185547, + "msecs": 32.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13012.025594711304, + "relativeCreated": 12936.21802330017, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,524", - "created": 1614535204.5247955, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 524.7955322265625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13012.363195419312, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:04,524", - "created": 1614535204.5249927, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 524.9927043914795, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13012.560367584229, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,525", - "created": 1614535204.5251966, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 525.1965522766113, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13012.76421546936, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,525", - "created": 1614535204.5253503, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 525.3503322601318, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13012.91799545288, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,525", - "created": 1614535204.5255558, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 525.5558490753174, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13013.123512268066, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,525", - "created": 1614535204.5257335, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 525.733470916748, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13013.301134109497, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,525", - "created": 1614535204.525936, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 525.9358882904053, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13013.503551483154, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,526", - "created": 1614535204.5260608, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 526.0608196258545, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13013.628482818604, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,526", - "created": 1614535204.5262306, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 526.2305736541748, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13013.798236846924, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,526", - "created": 1614535204.5263536, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 526.3535976409912, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13013.92126083374, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:04,526", - "created": 1614535204.5265973, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,032", + "created": 1742744829.0327916, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -189139,25 +34188,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 526.597261428833, + "msecs": 32.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13014.164924621582, + "relativeCreated": 12936.47837638855, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:04,527", - "created": 1614535204.527668, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,033", + "created": 1742744829.0337486, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -189166,98 +34214,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 527.6679992675781, + "msecs": 33.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13015.235662460327, + "relativeCreated": 12937.435388565063, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,527", - "created": 1614535204.527923, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 527.9231071472168, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13015.490770339966, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:04,528", - "created": 1614535204.528088, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 528.0880928039551, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13015.655755996704, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:04,528", - "created": 1614535204.5283482, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 528.3482074737549, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13015.915870666504, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ @@ -189267,54 +34233,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:04,528", - "created": 1614535204.528732, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,033", + "created": 1742744829.033968, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 528.7320613861084, + "msecs": 33.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13016.299724578857, + "relativeCreated": 12937.654733657837, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-02-28 19:00:04,528", - "created": 1614535204.5289252, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,034", + "created": 1742744829.0340712, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 528.9251804351807, + "msecs": 34.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13016.49284362793, + "relativeCreated": 12937.757968902588, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ @@ -189324,36 +34288,34 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:04,529", - "created": 1614535204.5291939, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,034", + "created": 1742744829.0342014, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 529.1938781738281, + "msecs": 34.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13016.761541366577, + "relativeCreated": 12937.888145446777, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:04,530", - "created": 1614535204.5302813, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,034", + "created": 1742744829.034482, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -189362,25 +34324,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 530.2813053131104, + "msecs": 34.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13017.84896850586, + "relativeCreated": 12938.16876411438, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:04,538", - "created": 1614535204.53881, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,042", + "created": 1742744829.0427322, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -189389,300 +34350,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 538.8100147247314, + "msecs": 42.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13026.37767791748, + "relativeCreated": 12946.41900062561, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,539", - "created": 1614535204.5391304, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 539.130449295044, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13026.698112487793, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:04,539", - "created": 1614535204.5393074, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 539.3073558807373, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13026.875019073486, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,539", - "created": 1614535204.539546, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 539.546012878418, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13027.113676071167, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,539", - "created": 1614535204.5396976, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 539.6976470947266, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13027.265310287476, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,539", - "created": 1614535204.539926, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 539.9260520935059, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13027.493715286255, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,540", - "created": 1614535204.540069, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 540.0691032409668, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13027.636766433716, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,540", - "created": 1614535204.540263, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 540.2629375457764, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13027.830600738525, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,540", - "created": 1614535204.5403924, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 540.3923988342285, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13027.960062026978, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,540", - "created": 1614535204.540582, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 540.5819416046143, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13028.149604797363, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,540", - "created": 1614535204.5407083, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 540.7083034515381, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13028.275966644287, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:04,540", - "created": 1614535204.5409734, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,043", + "created": 1742744829.0431426, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -189691,25 +34376,24 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 540.973424911499, + "msecs": 43.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13028.541088104248, + "relativeCreated": 12946.829319000244, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:04,542", - "created": 1614535204.542018, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,044", + "created": 1742744829.0441344, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -189718,98 +34402,16 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 542.017936706543, + "msecs": 44.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13029.585599899292, + "relativeCreated": 12947.821140289307, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,542", - "created": 1614535204.542283, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 542.2830581665039, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13029.850721359253, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:04,542", - "created": 1614535204.5424552, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 542.4551963806152, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13030.022859573364, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:04,542", - "created": 1614535204.5426998, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 542.6998138427734, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13030.267477035522, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ @@ -189819,73 +34421,70 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:04,543", - "created": 1614535204.5430727, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,044", + "created": 1742744829.0444977, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 543.0727005004883, + "msecs": 44.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13030.640363693237, + "relativeCreated": 12948.184490203857, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-02-28 19:00:04,543", - "created": 1614535204.5432632, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,044", + "created": 1742744829.0446062, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 543.2631969451904, + "msecs": 44.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13030.83086013794, + "relativeCreated": 12948.292970657349, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" } ], - "msecs": 858.7634563446045, + "msecs": 366.0, "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13346.331119537354, + "relativeCreated": 13270.42555809021, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.31550025939941406 + "time_consumption": 0.32213258743286133 }, { "args": [], - "asctime": "2021-02-28 19:00:04,859", - "created": 1614535204.8597927, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,367", + "created": 1742744829.3677704, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", @@ -189902,46 +34501,44 @@ "10", "0" ], - "asctime": "2021-02-28 19:00:04,859", - "created": 1614535204.8595223, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,367", + "created": 1742744829.3674898, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 859.5223426818848, + "msecs": 367.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13347.090005874634, + "relativeCreated": 13271.17657661438, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 859.7927093505859, + "msecs": 367.0, "msg": "Registering a correct working Callback", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13347.360372543335, + "relativeCreated": 13271.457195281982, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0002703666687011719 + "time_consumption": 0.00028061866760253906 }, { "args": [], - "asctime": "2021-02-28 19:00:05,061", - "created": 1614535205.0618322, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,569", + "created": 1742744829.5699146, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", @@ -189959,26 +34556,25 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:04,860", - "created": 1614535204.860241, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,368", + "created": 1742744829.3682742, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 860.2409362792969, + "msecs": 368.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13347.808599472046, + "relativeCreated": 13271.960973739624, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -189986,9 +34582,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:04,861", - "created": 1614535204.8616815, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,369", + "created": 1742744829.3698928, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -189997,25 +34592,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 861.6814613342285, + "msecs": 369.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13349.249124526978, + "relativeCreated": 13273.579597473145, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:04,870", - "created": 1614535204.8702123, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,378", + "created": 1742744829.3785994, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -190024,300 +34618,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 870.2123165130615, + "msecs": 378.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13357.77997970581, + "relativeCreated": 13282.286167144775, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,870", - "created": 1614535204.8705778, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 870.5778121948242, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13358.145475387573, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:04,870", - "created": 1614535204.870782, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 870.7818984985352, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13358.349561691284, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,871", - "created": 1614535204.8710213, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 871.0212707519531, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13358.588933944702, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,871", - "created": 1614535204.8711858, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 871.1857795715332, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13358.753442764282, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,871", - "created": 1614535204.8714569, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 871.4568614959717, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13359.02452468872, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,871", - "created": 1614535204.8716323, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 871.6323375701904, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13359.20000076294, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,871", - "created": 1614535204.8718553, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 871.8552589416504, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13359.4229221344, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,872", - "created": 1614535204.8720074, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 872.0073699951172, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13359.575033187866, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,872", - "created": 1614535204.8722064, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 872.206449508667, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13359.774112701416, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,872", - "created": 1614535204.872353, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 872.3530769348145, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13359.920740127563, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:04,872", - "created": 1614535204.8726509, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,379", + "created": 1742744829.3795059, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -190326,25 +34644,24 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 872.6508617401123, + "msecs": 379.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13360.218524932861, + "relativeCreated": 13283.19263458252, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:04,873", - "created": 1614535204.873645, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,380", + "created": 1742744829.3805263, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -190353,98 +34670,16 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 873.6450672149658, + "msecs": 380.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13361.212730407715, + "relativeCreated": 13284.213066101074, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,873", - "created": 1614535204.8739781, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 873.9781379699707, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13361.54580116272, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:04,874", - "created": 1614535204.8741791, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 874.1791248321533, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13361.746788024902, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:04,874", - "created": 1614535204.8744612, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 874.4611740112305, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13362.02883720398, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ @@ -190454,54 +34689,52 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:04,874", - "created": 1614535204.8749015, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,381", + "created": 1742744829.3812351, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 874.901533126831, + "msecs": 381.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13362.46919631958, + "relativeCreated": 13284.921884536743, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "prot-server:", "__callback__" ], - "asctime": "2021-02-28 19:00:04,875", - "created": 1614535204.8751268, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,381", + "created": 1742744829.381507, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 875.126838684082, + "msecs": 381.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13362.694501876831, + "relativeCreated": 13285.193681716919, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ @@ -190511,36 +34744,34 @@ "status: okay", "33" ], - "asctime": "2021-02-28 19:00:04,875", - "created": 1614535204.8754296, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,381", + "created": 1742744829.381849, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 875.429630279541, + "msecs": 381.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13362.99729347229, + "relativeCreated": 13285.53581237793, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-02-28 19:00:04,876", - "created": 1614535204.8767233, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,382", + "created": 1742744829.3828132, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -190549,25 +34780,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 876.7232894897461, + "msecs": 382.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13364.290952682495, + "relativeCreated": 13286.499977111816, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-02-28 19:00:04,885", - "created": 1614535204.8853698, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,391", + "created": 1742744829.391442, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -190576,300 +34806,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 885.3697776794434, + "msecs": 391.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13372.937440872192, + "relativeCreated": 13295.12882232666, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,885", - "created": 1614535204.8857684, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 885.7684135437012, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13373.33607673645, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:04,885", - "created": 1614535204.8859763, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 885.9763145446777, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13373.543977737427, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,886", - "created": 1614535204.8862393, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 886.2392902374268, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13373.806953430176, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,886", - "created": 1614535204.8864038, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 886.4037990570068, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13373.971462249756, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,886", - "created": 1614535204.8866374, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 886.6374492645264, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13374.205112457275, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,886", - "created": 1614535204.8867865, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 886.7864608764648, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13374.354124069214, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,886", - "created": 1614535204.8869994, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 886.9993686676025, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13374.567031860352, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,887", - "created": 1614535204.8872352, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 887.235164642334, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13374.802827835083, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,887", - "created": 1614535204.8874824, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 887.4824047088623, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13375.050067901611, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:04,887", - "created": 1614535204.8876688, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 887.6688480377197, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13375.236511230469, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-server:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-02-28 19:00:04,887", - "created": 1614535204.8879883, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,392", + "created": 1742744829.3922782, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -190878,25 +34832,24 @@ "lineno": 284, "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 887.9883289337158, + "msecs": 392.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13375.555992126465, + "relativeCreated": 13295.96495628357, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-client:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-02-28 19:00:04,889", - "created": 1614535204.889018, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,393", + "created": 1742744829.3933716, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -190905,98 +34858,16 @@ "lineno": 414, "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 889.0180587768555, + "msecs": 393.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13376.585721969604, + "relativeCreated": 13297.05834388733, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:04,889", - "created": 1614535204.8893838, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 889.3837928771973, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13376.951456069946, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:04,889", - "created": 1614535204.8896291, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 889.6291255950928, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13377.196788787842, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" - ], - "asctime": "2021-02-28 19:00:04,890", - "created": 1614535204.890013, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "stp", - "msecs": 890.0129795074463, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13377.580642700195, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ @@ -191006,81 +34877,78 @@ "status: okay", "33" ], - "asctime": "2021-02-28 19:00:04,890", - "created": 1614535204.8904774, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,394", + "created": 1742744829.3941905, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 890.4774188995361, + "msecs": 394.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13378.045082092285, + "relativeCreated": 13297.877311706543, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:04,890", - "created": 1614535204.8907516, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,394", + "created": 1742744829.3945305, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 890.7516002655029, + "msecs": 394.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13378.319263458252, + "relativeCreated": 13298.217296600342, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" } ], - "msecs": 61.83218955993652, + "msecs": 569.0, "msg": "Transfering data", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13549.399852752686, + "relativeCreated": 13473.601341247559, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.1710805892944336 + "time_consumption": 0.1753840446472168 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:05,063", - "created": 1614535205.0630236, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,571", + "created": 1742744829.571115, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", "module": "test", "moduleLogger": [ @@ -191090,9 +34958,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:05,062", - "created": 1614535205.0625348, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,570", + "created": 1742744829.5705826, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -191101,72 +34968,71 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 62.53480911254883, + "msecs": 570.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13550.102472305298, + "relativeCreated": 13474.269390106201, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message stored inside callback", + "=", "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:05,062", - "created": 1614535205.0628011, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,570", + "created": 1742744829.5708745, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 62.80112266540527, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 570.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13550.368785858154, + "relativeCreated": 13474.561214447021, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 63.02356719970703, + "msecs": 571.0, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13550.591230392456, + "relativeCreated": 13474.801778793335, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0002224445343017578 + "time_consumption": 0.00024056434631347656 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-02-28 19:00:05,063", - "created": 1614535205.0637276, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,571", + "created": 1742744829.5718527, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} and Type is ).", "module": "test", "moduleLogger": [ @@ -191176,9 +35042,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-02-28 19:00:05,063", - "created": 1614535205.0633442, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,571", + "created": 1742744829.5714545, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -191187,63 +35052,62 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 63.34424018859863, + "msecs": 571.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13550.911903381348, + "relativeCreated": 13475.141286849976, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message received by client", + "=", "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:05,063", - "created": 1614535205.063541, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,571", + "created": 1742744829.5716605, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 63.54093551635742, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 571.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13551.108598709106, + "relativeCreated": 13475.34728050232, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 63.727617263793945, + "msecs": 571.0, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13551.295280456543, + "relativeCreated": 13475.539445877075, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00018668174743652344 + "time_consumption": 0.00019216537475585938 }, { "args": [], - "asctime": "2021-02-28 19:00:05,064", - "created": 1614535205.0642793, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,572", + "created": 1742744829.5724363, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", @@ -191261,46 +35125,44 @@ "0", "'__callback_error__'" ], - "asctime": "2021-02-28 19:00:05,064", - "created": 1614535205.064077, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,572", + "created": 1742744829.572226, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "WARNING", "levelno": 30, - "lineno": 168, + "lineno": 169, "message": "prot-server: Overwriting existing callback '__callback__' for service_id (10) and data_id (0) to '__callback_error__'!", "module": "__init__", - "msecs": 64.07690048217773, + "msecs": 572.0, "msg": "%s Overwriting existing callback %s for service_id (%s) and data_id (%s) to %s!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13551.644563674927, + "relativeCreated": 13475.912809371948, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 64.27931785583496, + "msecs": 572.0, "msg": "Overwriting existing Callback using one with faulty (too many) return values", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13551.846981048584, + "relativeCreated": 13476.123094558716, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00020241737365722656 + "time_consumption": 0.00021028518676757812 }, { "args": [], - "asctime": "2021-02-28 19:00:05,266", - "created": 1614535205.266179, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,774", + "created": 1742744829.7745929, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", @@ -191318,26 +35180,25 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:05,064", - "created": 1614535205.064712, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,572", + "created": 1742744829.5728452, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 64.7120475769043, + "msecs": 572.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13552.279710769653, + "relativeCreated": 13476.531982421875, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -191345,9 +35206,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:05,066", - "created": 1614535205.0661187, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,574", + "created": 1742744829.574469, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -191356,25 +35216,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 66.11871719360352, + "msecs": 574.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13553.686380386353, + "relativeCreated": 13478.155851364136, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:05,074", - "created": 1614535205.0746815, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,583", + "created": 1742744829.5830495, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -191383,300 +35242,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 74.68152046203613, + "msecs": 583.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13562.249183654785, + "relativeCreated": 13486.736297607422, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,075", - "created": 1614535205.0750828, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 75.08277893066406, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13562.650442123413, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:05,075", - "created": 1614535205.0752869, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 75.286865234375, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13562.854528427124, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,075", - "created": 1614535205.075541, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 75.54101943969727, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13563.108682632446, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,075", - "created": 1614535205.0757072, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 75.70719718933105, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13563.27486038208, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,075", - "created": 1614535205.075944, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 75.9439468383789, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13563.511610031128, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,076", - "created": 1614535205.0760958, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 76.0958194732666, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13563.663482666016, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,076", - "created": 1614535205.0763135, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 76.31349563598633, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13563.881158828735, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,076", - "created": 1614535205.076462, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 76.4620304107666, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13564.029693603516, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,076", - "created": 1614535205.0766585, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 76.65848731994629, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13564.226150512695, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,076", - "created": 1614535205.0768204, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 76.82037353515625, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13564.388036727905, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:05,077", - "created": 1614535205.077111, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,583", + "created": 1742744829.583791, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -191685,25 +35268,24 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 77.11100578308105, + "msecs": 583.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13564.67866897583, + "relativeCreated": 13487.477779388428, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:05,078", - "created": 1614535205.0780652, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,584", + "created": 1742744829.5848448, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -191712,98 +35294,16 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 78.06515693664551, + "msecs": 584.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13565.632820129395, + "relativeCreated": 13488.531589508057, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,078", - "created": 1614535205.078372, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 78.37200164794922, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13565.939664840698, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:05,078", - "created": 1614535205.0785718, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 78.57179641723633, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13566.139459609985, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:05,078", - "created": 1614535205.0788517, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 78.85169982910156, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13566.41936302185, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ @@ -191813,78 +35313,75 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:05,079", - "created": 1614535205.079315, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,585", + "created": 1742744829.5855324, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 79.3149471282959, + "msecs": 585.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13566.882610321045, + "relativeCreated": 13489.219188690186, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "prot-server:", "__callback_error__" ], - "asctime": "2021-02-28 19:00:05,079", - "created": 1614535205.079542, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,585", + "created": 1742744829.5857873, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __callback_error__ to process received data", "module": "__init__", - "msecs": 79.54192161560059, + "msecs": 585.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13567.10958480835, + "relativeCreated": 13489.474058151245, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [], - "asctime": "2021-02-28 19:00:05,079", - "created": 1614535205.0797813, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,586", + "created": 1742744829.5860357, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "ERROR", "levelno": 40, - "lineno": 494, + "lineno": 492, "message": "prot-server: Exception raised. Check callback __callback_error__: \"too many values to unpack (expected 2)\" and it's return values for service: read data request, data_id: 0", "module": "__init__", - "msecs": 79.78129386901855, + "msecs": 586.0, "msg": "prot-server: Exception raised. Check callback __callback_error__: \"too many values to unpack (expected 2)\" and it's return values for service: read data request, data_id: 0", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13567.348957061768, + "relativeCreated": 13489.722490310669, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ @@ -191894,36 +35391,34 @@ "status: callback error", "None" ], - "asctime": "2021-02-28 19:00:05,080", - "created": 1614535205.0800464, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,586", + "created": 1742744829.5863383, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 80.04641532897949, + "msecs": 586.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13567.614078521729, + "relativeCreated": 13490.025043487549, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-02-28 19:00:05,080", - "created": 1614535205.080957, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,587", + "created": 1742744829.5871508, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -191932,25 +35427,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", "module": "__init__", - "msecs": 80.95693588256836, + "msecs": 587.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13568.524599075317, + "relativeCreated": 13490.837574005127, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-02-28 19:00:05,089", - "created": 1614535205.0896053, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,595", + "created": 1742744829.5957012, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -191959,300 +35453,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 32 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", "module": "__init__", - "msecs": 89.60533142089844, + "msecs": 595.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13577.172994613647, + "relativeCreated": 13499.387979507446, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,090", - "created": 1614535205.0900016, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 90.00158309936523, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13577.569246292114, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:05,090", - "created": 1614535205.0902026, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 90.20256996154785, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13577.770233154297, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,090", - "created": 1614535205.0904696, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 90.4695987701416, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13578.03726196289, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,090", - "created": 1614535205.0906389, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 90.63887596130371, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13578.206539154053, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,090", - "created": 1614535205.0908926, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 90.89255332946777, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13578.460216522217, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,091", - "created": 1614535205.091046, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 91.04609489440918, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13578.613758087158, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,091", - "created": 1614535205.0912604, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 91.26043319702148, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13578.82809638977, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,091", - "created": 1614535205.0914254, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 91.42541885375977, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13578.993082046509, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,091", - "created": 1614535205.0916758, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 91.6757583618164, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13579.243421554565, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,091", - "created": 1614535205.0918303, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 91.83025360107422, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13579.397916793823, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-server:", "(7): 7d a1 a2 87 f3 3a 3e" ], - "asctime": "2021-02-28 19:00:05,092", - "created": 1614535205.0921254, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,596", + "created": 1742744829.596467, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -192261,25 +35479,24 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d a1 a2 87 f3 3a 3e", "module": "__init__", - "msecs": 92.12541580200195, + "msecs": 596.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13579.693078994751, + "relativeCreated": 13500.15377998352, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-client:", "(7): 7d a1 a2 87 f3 3a 3e" ], - "asctime": "2021-02-28 19:00:05,093", - "created": 1614535205.093397, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,597", + "created": 1742744829.5977783, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -192288,98 +35505,16 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d a1 a2 87 f3 3a 3e", "module": "__init__", - "msecs": 93.39690208435059, + "msecs": 597.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13580.9645652771, + "relativeCreated": 13501.46508216858, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,093", - "created": 1614535205.0937648, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 93.7647819519043, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13581.332445144653, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:05,093", - "created": 1614535205.0939717, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 93.97172927856445, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13581.539392471313, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - "(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 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 a1 a2 87 f3" - ], - "asctime": "2021-02-28 19:00:05,094", - "created": 1614535205.0942528, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 a1 a2 87 f3", - "module": "stp", - "msecs": 94.2528247833252, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13581.820487976074, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ @@ -192389,81 +35524,78 @@ "status: callback error", "None" ], - "asctime": "2021-02-28 19:00:05,094", - "created": 1614535205.094694, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,598", + "created": 1742744829.5984788, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "ERROR", "levelno": 40, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: read data response, data_id: 0, status: callback error, data: \"None\"", "module": "__init__", - "msecs": 94.69389915466309, + "msecs": 598.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13582.261562347412, + "relativeCreated": 13502.16555595398, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:05,094", - "created": 1614535205.0949476, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,598", + "created": 1742744829.5987527, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 94.94757652282715, + "msecs": 598.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13582.515239715576, + "relativeCreated": 13502.439498901367, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" } ], - "msecs": 266.17908477783203, + "msecs": 774.0, "msg": "Transfering data", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13753.746747970581, + "relativeCreated": 13678.279638290405, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.17123150825500488 + "time_consumption": 0.17584013938903809 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:05,267", - "created": 1614535205.267378, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,775", + "created": 1742744829.775694, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", "module": "test", "moduleLogger": [ @@ -192473,9 +35605,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:05,266", - "created": 1614535205.2668862, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,775", + "created": 1742744829.775215, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -192484,72 +35615,71 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 266.88623428344727, + "msecs": 775.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13754.453897476196, + "relativeCreated": 13678.901672363281, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message stored inside callback", + "=", "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:05,267", - "created": 1614535205.267154, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,775", + "created": 1742744829.7754753, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 267.1539783477783, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 775.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13754.721641540527, + "relativeCreated": 13679.16202545166, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 267.3780918121338, + "msecs": 775.0, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13754.945755004883, + "relativeCreated": 13679.380655288696, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00022411346435546875 + "time_consumption": 0.0002186298370361328 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 2, 'data': None}", "" ], - "asctime": "2021-02-28 19:00:05,268", - "created": 1614535205.2681022, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,776", + "created": 1742744829.7764642, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 2, 'data': None} and Type is ).", "module": "test", "moduleLogger": [ @@ -192559,9 +35689,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 2, 'data': None}", "" ], - "asctime": "2021-02-28 19:00:05,267", - "created": 1614535205.2677093, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,776", + "created": 1742744829.7760172, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -192570,63 +35699,62 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 2, 'data': None} ()", "module": "test", - "msecs": 267.70925521850586, + "msecs": 776.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13755.276918411255, + "relativeCreated": 13679.703950881958, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message received by client", + "=", "{'data': None, 'data_id': 0, 'service_id': 11, 'status': 2}", "" ], - "asctime": "2021-02-28 19:00:05,267", - "created": 1614535205.2679088, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,776", + "created": 1742744829.7762525, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message received by client): result = {'data': None, 'data_id': 0, 'service_id': 11, 'status': 2} ()", "module": "test", - "msecs": 267.90881156921387, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 776.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13755.476474761963, + "relativeCreated": 13679.939270019531, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 268.10216903686523, + "msecs": 776.0, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13755.669832229614, + "relativeCreated": 13680.150985717773, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001933574676513672 + "time_consumption": 0.0002117156982421875 }, { "args": [], - "asctime": "2021-02-28 19:00:05,268", - "created": 1614535205.2686245, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,777", + "created": 1742744829.777058, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", @@ -192643,9 +35771,8 @@ "10", "0" ], - "asctime": "2021-02-28 19:00:05,268", - "created": 1614535205.2684453, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,776", + "created": 1742744829.7768407, "exc_text": null, "filename": "__init__.py", "funcName": "add", @@ -192654,35 +35781,34 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback_error__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 268.4452533721924, + "msecs": 776.0, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13756.012916564941, + "relativeCreated": 13680.527448654175, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 268.62454414367676, + "msecs": 777.0, "msg": "Removing the registered Callback", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13756.192207336426, + "relativeCreated": 13680.744647979736, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.000179290771484375 + "time_consumption": 0.00021719932556152344 }, { "args": [], - "asctime": "2021-02-28 19:00:05,470", - "created": 1614535205.4705684, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,979", + "created": 1742744829.9792504, "exc_text": null, "filename": "test_callbacks.py", "funcName": "specific_callback", @@ -192700,26 +35826,25 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:05,269", - "created": 1614535205.269012, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,777", + "created": 1742744829.7774758, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 269.0119743347168, + "msecs": 777.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13756.579637527466, + "relativeCreated": 13681.162595748901, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -192727,9 +35852,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:05,270", - "created": 1614535205.270771, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,779", + "created": 1742744829.7793462, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -192738,25 +35862,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 270.7710266113281, + "msecs": 779.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13758.338689804077, + "relativeCreated": 13683.032989501953, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:05,279", - "created": 1614535205.2794752, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,787", + "created": 1742744829.7879734, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -192765,300 +35888,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 279.47521209716797, + "msecs": 787.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13767.042875289917, + "relativeCreated": 13691.660165786743, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,279", - "created": 1614535205.2798405, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 279.84046936035156, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13767.4081325531, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:05,280", - "created": 1614535205.2800417, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 280.0416946411133, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13767.609357833862, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,280", - "created": 1614535205.2802758, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 280.275821685791, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13767.84348487854, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,280", - "created": 1614535205.2804394, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 280.4393768310547, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13768.007040023804, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,280", - "created": 1614535205.280675, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 280.67493438720703, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13768.242597579956, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,280", - "created": 1614535205.2808714, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 280.8713912963867, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13768.439054489136, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,281", - "created": 1614535205.2810936, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 281.0935974121094, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13768.661260604858, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,281", - "created": 1614535205.2812552, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 281.25524520874023, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13768.82290840149, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,281", - "created": 1614535205.2814546, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 281.45456314086914, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13769.022226333618, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,281", - "created": 1614535205.2816026, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 281.6026210784912, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13769.17028427124, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:05,281", - "created": 1614535205.2819533, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,788", + "created": 1742744829.7888222, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -193067,25 +35914,24 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 281.9533348083496, + "msecs": 788.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13769.520998001099, + "relativeCreated": 13692.508935928345, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:05,282", - "created": 1614535205.2829485, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,789", + "created": 1742744829.789903, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -193094,98 +35940,16 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 282.94849395751953, + "msecs": 789.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13770.516157150269, + "relativeCreated": 13693.589687347412, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,283", - "created": 1614535205.2832735, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 283.27345848083496, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13770.841121673584, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:05,283", - "created": 1614535205.2834816, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 283.4815979003906, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13771.04926109314, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:05,283", - "created": 1614535205.283763, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 283.76293182373047, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13771.33059501648, - "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ @@ -193195,53 +35959,51 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:05,284", - "created": 1614535205.284227, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,790", + "created": 1742744829.790724, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 284.2268943786621, + "msecs": 790.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13771.794557571411, + "relativeCreated": 13694.410800933838, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:05,284", - "created": 1614535205.2844584, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,791", + "created": 1742744829.791013, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 486, + "lineno": 484, "message": "prot-server: Incomming message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 284.4583988189697, + "msecs": 791.0, "msg": "%s Incomming message with no registered callback. Sending negative response.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13772.026062011719, + "relativeCreated": 13694.699764251709, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ @@ -193251,36 +36013,34 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-02-28 19:00:05,284", - "created": 1614535205.2847528, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,791", + "created": 1742744829.791345, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 284.75284576416016, + "msecs": 791.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13772.32050895691, + "relativeCreated": 13695.031642913818, "stack_info": null, - "thread": 140380150404864, - "threadName": "Thread-19" + "thread": 140630214817472, + "threadName": "Thread-19 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-02-28 19:00:05,285", - "created": 1614535205.2857065, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,792", + "created": 1742744829.792273, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -193289,25 +36049,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", "module": "__init__", - "msecs": 285.7065200805664, + "msecs": 792.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13773.274183273315, + "relativeCreated": 13695.95980644226, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c" ], - "asctime": "2021-02-28 19:00:05,294", - "created": 1614535205.2942193, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,800", + "created": 1742744829.8009574, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -193316,300 +36075,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 31 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c", "module": "__init__", - "msecs": 294.2192554473877, + "msecs": 800.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13781.786918640137, + "relativeCreated": 13704.644203186035, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,294", - "created": 1614535205.2946115, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 294.61145401000977, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13782.179117202759, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:05,294", - "created": 1614535205.2948165, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 294.8164939880371, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13782.384157180786, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,295", - "created": 1614535205.2950485, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 295.04847526550293, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13782.616138458252, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,295", - "created": 1614535205.2952142, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 295.2141761779785, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13782.781839370728, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,295", - "created": 1614535205.2954488, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 295.44878005981445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13783.016443252563, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,295", - "created": 1614535205.2956145, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 295.61448097229004, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13783.182144165039, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,295", - "created": 1614535205.2958326, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 295.83263397216797, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13783.400297164917, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,295", - "created": 1614535205.2959814, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 295.98140716552734, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13783.549070358276, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,296", - "created": 1614535205.296638, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 296.63801193237305, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13784.205675125122, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:05,296", - "created": 1614535205.296803, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 296.8029975891113, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13784.37066078186, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-server:", "(7): 7d 88 6a 33 01 3a 3e" ], - "asctime": "2021-02-28 19:00:05,297", - "created": 1614535205.2970939, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,801", + "created": 1742744829.8017962, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -193618,25 +36101,24 @@ "lineno": 284, "message": "comm-server: TX -> (7): 7d 88 6a 33 01 3a 3e", "module": "__init__", - "msecs": 297.09386825561523, + "msecs": 801.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13784.661531448364, + "relativeCreated": 13705.482959747314, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "comm-client:", "(7): 7d 88 6a 33 01 3a 3e" ], - "asctime": "2021-02-28 19:00:05,298", - "created": 1614535205.2983496, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,803", + "created": 1742744829.8031301, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -193645,98 +36127,16 @@ "lineno": 414, "message": "comm-client: RX <- (7): 7d 88 6a 33 01 3a 3e", "module": "__init__", - "msecs": 298.34961891174316, + "msecs": 803.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13785.917282104492, + "relativeCreated": 13706.816911697388, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:05,298", - "created": 1614535205.298619, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 298.61903190612793, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13786.186695098877, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:05,298", - "created": 1614535205.2987926, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 298.79260063171387, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13786.360263824463, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" - }, - { - "args": [ - "STP:", - "(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 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 88 6a 33 01" - ], - "asctime": "2021-02-28 19:00:05,299", - "created": 1614535205.2990336, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 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 88 6a 33 01", - "module": "stp", - "msecs": 299.03364181518555, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 13786.601305007935, - "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ @@ -193746,81 +36146,78 @@ "status: no callback for service, data buffered", "None" ], - "asctime": "2021-02-28 19:00:05,299", - "created": 1614535205.2994053, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,803", + "created": 1742744829.8039327, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: read data response, data_id: 0, status: no callback for service, data buffered, data: \"None\"", "module": "__init__", - "msecs": 299.4053363800049, + "msecs": 803.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13786.972999572754, + "relativeCreated": 13707.619428634644, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:05,299", - "created": 1614535205.2996197, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,804", + "created": 1742744829.8042438, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 299.6196746826172, + "msecs": 804.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13787.187337875366, + "relativeCreated": 13707.930564880371, "stack_info": null, - "thread": 140379663890176, - "threadName": "Thread-20" + "thread": 140630206424768, + "threadName": "Thread-20 (_start)" } ], - "msecs": 470.5684185028076, + "msecs": 979.0, "msg": "Transfering data", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13958.136081695557, + "relativeCreated": 13882.93719291687, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.17094874382019043 + "time_consumption": 0.17500662803649902 }, { "args": [ "None", "" ], - "asctime": "2021-02-28 19:00:05,471", - "created": 1614535205.4716015, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,980", + "created": 1742744829.980361, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message stored inside callback is correct (Content None and Type is ).", "module": "test", "moduleLogger": [ @@ -193830,9 +36227,8 @@ "None", "" ], - "asctime": "2021-02-28 19:00:05,471", - "created": 1614535205.4711852, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,979", + "created": 1742744829.9798682, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -193841,72 +36237,71 @@ "lineno": 22, "message": "Result (Message stored inside callback): None ()", "module": "test", - "msecs": 471.18520736694336, + "msecs": 979.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13958.752870559692, + "relativeCreated": 13883.554935455322, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message stored inside callback", + "=", "None", "" ], - "asctime": "2021-02-28 19:00:05,471", - "created": 1614535205.471413, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,980", + "created": 1742744829.980112, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message stored inside callback): result = None ()", "module": "test", - "msecs": 471.41289710998535, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 980.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13958.980560302734, + "relativeCreated": 13883.798837661743, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 471.6014862060547, + "msecs": 980.0, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13959.169149398804, + "relativeCreated": 13884.047746658325, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00018858909606933594 + "time_consumption": 0.00024890899658203125 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 1, 'data': None}", "" ], - "asctime": "2021-02-28 19:00:05,472", - "created": 1614535205.4723127, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,981", + "created": 1742744829.981103, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 1, 'data': None} and Type is ).", "module": "test", "moduleLogger": [ @@ -193916,9 +36311,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 1, 'data': None}", "" ], - "asctime": "2021-02-28 19:00:05,471", - "created": 1614535205.471891, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,980", + "created": 1742744829.980703, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -193927,93 +36321,91 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 1, 'data': None} ()", "module": "test", - "msecs": 471.890926361084, + "msecs": 980.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13959.458589553833, + "relativeCreated": 13884.389877319336, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message received by client", + "=", "{'data': None, 'data_id': 0, 'service_id': 11, 'status': 1}", "" ], - "asctime": "2021-02-28 19:00:05,472", - "created": 1614535205.4721155, - "exc_info": null, + "asctime": "2025-03-23 16:47:09,980", + "created": 1742744829.9809096, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message received by client): result = {'data': None, 'data_id': 0, 'service_id': 11, 'status': 1} ()", "module": "test", - "msecs": 472.11551666259766, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 980.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13959.683179855347, + "relativeCreated": 13884.596347808838, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 472.31268882751465, + "msecs": 981.0, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 13959.880352020264, + "relativeCreated": 13884.78970527649, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001971721649169922 + "time_consumption": 0.0001933574676513672 } ], - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.9690454006195068, - "time_finished": "2021-02-28 19:00:05,472", - "time_start": "2021-02-28 19:00:04,503" + "time_consumption": 0.9725790023803711, + "time_finished": "2025-03-23 16:47:09,981", + "time_start": "2025-03-23 16:47:09,008" }, - "_tb5akE4LEeupHeIYRnC0qw": { + "REQ-0014": { "args": null, - "asctime": "2021-02-28 19:00:07,158", - "created": 1614535207.1582792, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,843", + "created": 1742744818.8436654, "exc_text": null, "filename": "__init__.py", - "funcName": "testrun", + "funcName": "testCase", "levelname": "INFO", "levelno": 20, - "lineno": 49, - "message": "_tb5akE4LEeupHeIYRnC0qw", + "lineno": 327, + "message": "REQ-0014", "module": "__init__", "moduleLogger": [], - "msecs": 158.2791805267334, - "msg": "_tb5akE4LEeupHeIYRnC0qw", + "msecs": 843.0, + "msg": "REQ-0014", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15645.846843719482, + "relativeCreated": 2747.352123260498, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2021-02-28 19:00:07,169", - "created": 1614535207.169362, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.853462, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -194027,9 +36419,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:07,159", - "created": 1614535207.1598184, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,845", + "created": 1742744818.845182, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -194038,24 +36429,23 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 159.8184108734131, + "msecs": 845.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15647.386074066162, + "relativeCreated": 2748.868703842163, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:07,161", - "created": 1614535207.161119, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,847", + "created": 1742744818.8473294, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -194064,24 +36454,23 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 161.1189842224121, + "msecs": 847.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15648.686647415161, + "relativeCreated": 2751.016139984131, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:07,161", - "created": 1614535207.161486, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,847", + "created": 1742744818.8476548, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", @@ -194090,41 +36479,40 @@ "lineno": 520, "message": "comm-server: Waiting for incomming connection", "module": "__init__", - "msecs": 161.4859104156494, + "msecs": 847.0, "msg": "%s Waiting for incomming connection", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15649.053573608398, + "relativeCreated": 2751.3415813446045, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:07,161", - "created": 1614535207.1619716, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,848", + "created": 1742744818.8480625, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 161.9715690612793, + "msecs": 848.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15649.539232254028, + "relativeCreated": 2751.749277114868, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194133,26 +36521,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:07,162", - "created": 1614535207.1622226, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,848", + "created": 1742744818.8482997, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 162.22262382507324, + "msecs": 848.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15649.790287017822, + "relativeCreated": 2751.986503601074, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194160,9 +36547,8 @@ "prot-server:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:07,162", - "created": 1614535207.162516, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,848", + "created": 1742744818.8485792, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194171,15 +36557,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 162.51611709594727, + "msecs": 848.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15650.083780288696, + "relativeCreated": 2752.2659301757812, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194187,9 +36573,8 @@ "prot-server:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:07,162", - "created": 1614535207.162726, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,848", + "created": 1742744818.8487918, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194198,15 +36583,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 162.72592544555664, + "msecs": 848.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15650.293588638306, + "relativeCreated": 2752.47859954834, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194214,9 +36599,8 @@ "prot-server:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:07,162", - "created": 1614535207.1629183, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,848", + "created": 1742744818.8489904, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194225,15 +36609,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 162.9183292388916, + "msecs": 848.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15650.48599243164, + "relativeCreated": 2752.6772022247314, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194241,9 +36625,8 @@ "prot-server:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:07,163", - "created": 1614535207.1631014, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,849", + "created": 1742744818.8491993, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194252,15 +36635,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 163.1014347076416, + "msecs": 849.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15650.66909790039, + "relativeCreated": 2752.8860569000244, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194270,26 +36653,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:07,163", - "created": 1614535207.1632822, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,849", + "created": 1742744818.849414, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 163.2821559906006, + "msecs": 849.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15650.84981918335, + "relativeCreated": 2753.100872039795, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194299,26 +36681,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:07,163", - "created": 1614535207.1634772, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,849", + "created": 1742744818.8496296, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 163.47718238830566, + "msecs": 849.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15651.044845581055, + "relativeCreated": 2753.3164024353027, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194328,26 +36709,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:07,163", - "created": 1614535207.1636562, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,849", + "created": 1742744818.8498561, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 163.65623474121094, + "msecs": 849.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15651.22389793396, + "relativeCreated": 2753.542900085449, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194357,52 +36737,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:07,163", - "created": 1614535207.1638367, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,850", + "created": 1742744818.8501048, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 163.83671760559082, + "msecs": 850.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15651.40438079834, + "relativeCreated": 2753.791570663452, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:07,163", - "created": 1614535207.1639948, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,850", + "created": 1742744818.8503594, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 163.99478912353516, + "msecs": 850.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15651.562452316284, + "relativeCreated": 2754.0462017059326, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194411,26 +36789,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:07,164", - "created": 1614535207.1641684, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,850", + "created": 1742744818.8505685, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 164.1683578491211, + "msecs": 850.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15651.73602104187, + "relativeCreated": 2754.2552947998047, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194438,9 +36815,8 @@ "prot-server:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:07,164", - "created": 1614535207.1643748, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,850", + "created": 1742744818.8507884, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194449,15 +36825,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 164.37482833862305, + "msecs": 850.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15651.942491531372, + "relativeCreated": 2754.4751167297363, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194465,9 +36841,8 @@ "prot-server:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:07,164", - "created": 1614535207.1645412, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,850", + "created": 1742744818.850998, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194476,15 +36851,15 @@ "lineno": 571, "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 164.54124450683594, + "msecs": 850.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15652.108907699585, + "relativeCreated": 2754.6846866607666, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194494,26 +36869,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:07,164", - "created": 1614535207.1647127, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,851", + "created": 1742744818.8512044, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 164.71266746520996, + "msecs": 851.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15652.280330657959, + "relativeCreated": 2754.8911571502686, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194523,26 +36897,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:07,164", - "created": 1614535207.1648998, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,851", + "created": 1742744818.8514314, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 164.8998260498047, + "msecs": 851.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15652.467489242554, + "relativeCreated": 2755.1181316375732, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194551,26 +36924,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:07,165", - "created": 1614535207.1650815, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,851", + "created": 1742744818.85163, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 165.08150100708008, + "msecs": 851.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15652.64916419983, + "relativeCreated": 2755.316734313965, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194579,26 +36951,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:07,165", - "created": 1614535207.1652436, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,851", + "created": 1742744818.8518152, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 165.24362564086914, + "msecs": 851.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15652.811288833618, + "relativeCreated": 2755.5019855499268, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194607,78 +36978,75 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:07,165", - "created": 1614535207.1653996, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,851", + "created": 1742744818.8519974, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-server: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 165.39955139160156, + "msecs": 851.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15652.96721458435, + "relativeCreated": 2755.6841373443604, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:07,165", - "created": 1614535207.1655586, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8521988, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-server: Initialisation finished.", "module": "__init__", - "msecs": 165.5585765838623, + "msecs": 852.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15653.126239776611, + "relativeCreated": 2755.885601043701, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:07,165", - "created": 1614535207.1659138, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8523011, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 165.91382026672363, + "msecs": 852.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15653.481483459473, + "relativeCreated": 2755.9878826141357, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194687,26 +37055,25 @@ "authentification request", "authentification response" ], - "asctime": "2021-02-28 19:00:07,166", - "created": 1614535207.1661, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.852359, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", "module": "__init__", - "msecs": 166.10002517700195, + "msecs": 852.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15653.667688369751, + "relativeCreated": 2756.0458183288574, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194714,9 +37081,8 @@ "prot-client:", "service: authentification request, data_id: seed" ], - "asctime": "2021-02-28 19:00:07,166", - "created": 1614535207.166322, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8524313, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194725,15 +37091,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 166.3219928741455, + "msecs": 852.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15653.889656066895, + "relativeCreated": 2756.118059158325, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194741,9 +37107,8 @@ "prot-client:", "service: authentification response, data_id: seed" ], - "asctime": "2021-02-28 19:00:07,166", - "created": 1614535207.1664941, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.852489, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194752,15 +37117,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", "module": "__init__", - "msecs": 166.49413108825684, + "msecs": 852.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15654.061794281006, + "relativeCreated": 2756.175756454468, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194768,9 +37133,8 @@ "prot-client:", "service: authentification request, data_id: key" ], - "asctime": "2021-02-28 19:00:07,166", - "created": 1614535207.166668, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8525438, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194779,15 +37143,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 166.66793823242188, + "msecs": 852.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15654.23560142517, + "relativeCreated": 2756.230592727661, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194795,9 +37159,8 @@ "prot-client:", "service: authentification response, data_id: key" ], - "asctime": "2021-02-28 19:00:07,166", - "created": 1614535207.1668267, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8526003, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -194806,15 +37169,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", "module": "__init__", - "msecs": 166.82672500610352, + "msecs": 852.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15654.394388198853, + "relativeCreated": 2756.287097930908, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194824,26 +37187,25 @@ "0", "0" ], - "asctime": "2021-02-28 19:00:07,166", - "created": 1614535207.166996, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8526592, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", "module": "__init__", - "msecs": 166.99600219726562, + "msecs": 852.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15654.563665390015, + "relativeCreated": 2756.3459873199463, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194853,26 +37215,25 @@ "1", "0" ], - "asctime": "2021-02-28 19:00:07,167", - "created": 1614535207.167171, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8527246, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", "module": "__init__", - "msecs": 167.17100143432617, + "msecs": 852.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15654.738664627075, + "relativeCreated": 2756.41131401062, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194882,26 +37243,25 @@ "0", "1" ], - "asctime": "2021-02-28 19:00:07,167", - "created": 1614535207.1673424, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8527858, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", "module": "__init__", - "msecs": 167.3424243927002, + "msecs": 852.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15654.91008758545, + "relativeCreated": 2756.472587585449, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194911,52 +37271,50 @@ "1", "1" ], - "asctime": "2021-02-28 19:00:07,167", - "created": 1614535207.1675198, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8528442, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", "module": "__init__", - "msecs": 167.51980781555176, + "msecs": 852.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15655.0874710083, + "relativeCreated": 2756.531000137329, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:07,167", - "created": 1614535207.1676736, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8528965, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 385, + "lineno": 380, "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", "module": "__init__", - "msecs": 167.67358779907227, + "msecs": 852.0, "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15655.241250991821, + "relativeCreated": 2756.5832138061523, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194965,26 +37323,25 @@ "channel name request", "channel name response" ], - "asctime": "2021-02-28 19:00:07,167", - "created": 1614535207.1678445, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,852", + "created": 1742744818.8529525, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", "module": "__init__", - "msecs": 167.8445339202881, + "msecs": 852.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15655.412197113037, + "relativeCreated": 2756.639242172241, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -194992,9 +37349,8 @@ "prot-client:", "service: channel name request, data_id: name" ], - "asctime": "2021-02-28 19:00:07,168", - "created": 1614535207.1680267, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8530161, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -195003,15 +37359,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 168.02668571472168, + "msecs": 853.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15655.59434890747, + "relativeCreated": 2756.7028999328613, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -195019,9 +37375,8 @@ "prot-client:", "service: channel name response, data_id: name" ], - "asctime": "2021-02-28 19:00:07,168", - "created": 1614535207.1681864, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8530707, "exc_text": null, "filename": "__init__.py", "funcName": "add_msg_to_auth_whitelist_", @@ -195030,15 +37385,15 @@ "lineno": 571, "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", "module": "__init__", - "msecs": 168.18642616271973, + "msecs": 853.0, "msg": "%s Adding Message (%s) to the authentification whitelist", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15655.754089355469, + "relativeCreated": 2756.7574977874756, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -195048,26 +37403,25 @@ "8", "0" ], - "asctime": "2021-02-28 19:00:07,168", - "created": 1614535207.168351, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8531272, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", "module": "__init__", - "msecs": 168.3509349822998, + "msecs": 853.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15655.918598175049, + "relativeCreated": 2756.8140029907227, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -195077,26 +37431,25 @@ "9", "0" ], - "asctime": "2021-02-28 19:00:07,168", - "created": 1614535207.1685185, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8531873, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", "module": "__init__", - "msecs": 168.5185432434082, + "msecs": 853.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15656.086206436157, + "relativeCreated": 2756.8740844726562, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -195105,26 +37458,25 @@ "read data request", "read data response" ], - "asctime": "2021-02-28 19:00:07,168", - "created": 1614535207.168697, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8532443, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=read data request and Response=read data response", "module": "__init__", - "msecs": 168.69711875915527, + "msecs": 853.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15656.264781951904, + "relativeCreated": 2756.9310665130615, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -195133,26 +37485,25 @@ "write data request", "write data response" ], - "asctime": "2021-02-28 19:00:07,168", - "created": 1614535207.1688702, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8532991, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=write data request and Response=write data response", "module": "__init__", - "msecs": 168.870210647583, + "msecs": 853.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15656.437873840332, + "relativeCreated": 2756.985902786255, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -195161,72 +37512,69 @@ "execute request", "execute response" ], - "asctime": "2021-02-28 19:00:07,169", - "created": 1614535207.1690497, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8533523, "exc_text": null, "filename": "__init__.py", "funcName": "add_service", "levelname": "DEBUG", "levelno": 10, - "lineno": 594, + "lineno": 597, "message": "prot-client: Adding Service with Request=execute request and Response=execute response", "module": "__init__", - "msecs": 169.04973983764648, + "msecs": 853.0, "msg": "%s Adding Service with Request=%s and Response=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15656.617403030396, + "relativeCreated": 2757.0390701293945, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:07,169", - "created": 1614535207.1692133, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8534095, "exc_text": null, "filename": "__init__.py", "funcName": "__init__", "levelname": "INFO", "levelno": 20, - "lineno": 337, + "lineno": 340, "message": "prot-client: Initialisation finished.", "module": "__init__", - "msecs": 169.21329498291016, + "msecs": 853.0, "msg": "%s Initialisation finished.", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15656.78095817566, + "relativeCreated": 2757.096290588379, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 169.36206817626953, + "msecs": 853.0, "msg": "Setting up communication", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15656.929731369019, + "relativeCreated": 2757.1487426757812, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.000148773193359375 + "time_consumption": 5.245208740234375e-05 }, { "args": [], - "asctime": "2021-02-28 19:00:07,514", - "created": 1614535207.514778, - "exc_info": null, + "asctime": "2025-03-23 16:46:59,197", + "created": 1742744819.1973736, "exc_text": null, "filename": "test_helpers.py", "funcName": "set_up_socket_protocol", @@ -195240,9 +37588,8 @@ "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:07,169", - "created": 1614535207.1697354, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8535912, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -195251,24 +37598,23 @@ "lineno": 268, "message": "comm-client: Connection established...", "module": "__init__", - "msecs": 169.73543167114258, + "msecs": 853.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15657.303094863892, + "relativeCreated": 2757.2779655456543, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-client:" ], - "asctime": "2021-02-28 19:00:07,169", - "created": 1614535207.1699095, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8536482, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -195277,41 +37623,40 @@ "lineno": 411, "message": "comm-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 169.90947723388672, + "msecs": 853.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15657.477140426636, + "relativeCreated": 2757.3349475860596, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:07,170", - "created": 1614535207.1700692, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8537035, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-client: Cleaning up receive-buffer", "module": "__init__", - "msecs": 170.06921768188477, + "msecs": 853.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15657.636880874634, + "relativeCreated": 2757.390260696411, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -195322,35 +37667,33 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:07,170", - "created": 1614535207.1703455, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,853", + "created": 1742744818.8537967, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 170.34554481506348, + "msecs": 853.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15657.913208007812, + "relativeCreated": 2757.48348236084, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:07,170", - "created": 1614535207.1709888, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,854", + "created": 1742744818.8540072, "exc_text": null, "filename": "__init__.py", "funcName": "__connect__", @@ -195359,24 +37702,23 @@ "lineno": 268, "message": "comm-server: Connection established...", "module": "__init__", - "msecs": 170.9887981414795, + "msecs": 854.0, "msg": "%s Connection established...", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15658.556461334229, + "relativeCreated": 2757.6940059661865, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "comm-server:" ], - "asctime": "2021-02-28 19:00:07,171", - "created": 1614535207.1711824, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,854", + "created": 1742744818.8540914, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_buffer__", @@ -195385,41 +37727,40 @@ "lineno": 411, "message": "comm-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 171.18239402770996, + "msecs": 854.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15658.750057220459, + "relativeCreated": 2757.7781677246094, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "prot-server:" ], - "asctime": "2021-02-28 19:00:07,171", - "created": 1614535207.1713483, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,854", + "created": 1742744818.854156, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 439, + "lineno": 434, "message": "prot-server: Cleaning up receive-buffer", "module": "__init__", - "msecs": 171.34833335876465, + "msecs": 854.0, "msg": "%s Cleaning up receive-buffer", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15658.915996551514, + "relativeCreated": 2757.842779159546, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -195427,9 +37768,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:07,173", - "created": 1614535207.1731727, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,854", + "created": 1742744818.8544137, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -195438,25 +37778,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 173.1727123260498, + "msecs": 854.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15660.740375518799, + "relativeCreated": 2758.1005096435547, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:07,181", - "created": 1614535207.1817822, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,862", + "created": 1742744818.86265, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -195465,300 +37804,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 181.78224563598633, + "msecs": 862.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15669.349908828735, + "relativeCreated": 2766.336679458618, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,182", - "created": 1614535207.1821706, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 182.17062950134277, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15669.738292694092, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:07,182", - "created": 1614535207.182359, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 182.358980178833, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15669.926643371582, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,182", - "created": 1614535207.1825795, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 182.57951736450195, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15670.147180557251, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,182", - "created": 1614535207.182736, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 182.73591995239258, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15670.303583145142, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,182", - "created": 1614535207.1829634, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 182.96337127685547, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15670.531034469604, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,183", - "created": 1614535207.183147, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.14695358276367, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15670.714616775513, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,183", - "created": 1614535207.1833515, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 183.3515167236328, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15670.919179916382, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,183", - "created": 1614535207.1834972, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.49719047546387, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15671.064853668213, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,183", - "created": 1614535207.1836872, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 183.6872100830078, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15671.254873275757, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,183", - "created": 1614535207.183824, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 183.8240623474121, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15671.391725540161, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" }, { "args": [ "comm-client:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:07,184", - "created": 1614535207.1843402, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,862", + "created": 1742744818.862961, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -195767,25 +37830,24 @@ "lineno": 284, "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 184.340238571167, + "msecs": 862.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15671.907901763916, + "relativeCreated": 2766.6478157043457, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" }, { "args": [ "comm-server:", "(6): 53 5e 67 0b 3a 3e" ], - "asctime": "2021-02-28 19:00:07,185", - "created": 1614535207.185582, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,863", + "created": 1742744818.8639233, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -195794,98 +37856,16 @@ "lineno": 414, "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", "module": "__init__", - "msecs": 185.58192253112793, + "msecs": 863.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15673.149585723877, + "relativeCreated": 2767.6100730895996, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,185", - "created": 1614535207.185895, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 185.89496612548828, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15673.462629318237, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:07,186", - "created": 1614535207.1860728, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 186.07282638549805, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15673.640489578247, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(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 38 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 53 5e 67 0b" - ], - "asctime": "2021-02-28 19:00:07,186", - "created": 1614535207.1863146, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 38 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 53 5e 67 0b", - "module": "stp", - "msecs": 186.31458282470703, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15673.882246017456, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" }, { "args": [ @@ -195895,54 +37875,52 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:07,186", - "created": 1614535207.1866922, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,864", + "created": 1742744818.8641937, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 186.6922378540039, + "msecs": 864.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15674.259901046753, + "relativeCreated": 2767.880439758301, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" }, { "args": [ "prot-server:", "__channel_name_request__" ], - "asctime": "2021-02-28 19:00:07,186", - "created": 1614535207.186884, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,864", + "created": 1742744818.864288, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __channel_name_request__ to process received data", "module": "__init__", - "msecs": 186.88392639160156, + "msecs": 864.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15674.45158958435, + "relativeCreated": 2767.974853515625, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" }, { "args": [ @@ -195952,36 +37930,34 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:07,187", - "created": 1614535207.1871727, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,864", + "created": 1742744818.8644059, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 187.17265129089355, + "msecs": 864.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15674.740314483643, + "relativeCreated": 2768.092632293701, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:07,187", - "created": 1614535207.1879892, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,864", + "created": 1742744818.8647342, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -195990,25 +37966,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 187.9892349243164, + "msecs": 864.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15675.556898117065, + "relativeCreated": 2768.420934677124, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" ], - "asctime": "2021-02-28 19:00:07,196", - "created": 1614535207.1965013, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,873", + "created": 1742744818.8730059, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -196017,300 +37992,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", "module": "__init__", - "msecs": 196.5012550354004, + "msecs": 873.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15684.06891822815, + "relativeCreated": 2776.6926288604736, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,196", - "created": 1614535207.1968296, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 196.82955741882324, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15684.397220611572, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:07,197", - "created": 1614535207.1970081, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 197.0081329345703, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15684.57579612732, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,197", - "created": 1614535207.1972516, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 197.251558303833, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15684.819221496582, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,197", - "created": 1614535207.1974018, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 197.401762008667, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15684.969425201416, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,197", - "created": 1614535207.1976173, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 197.6172924041748, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15685.184955596924, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,197", - "created": 1614535207.1977928, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 197.79276847839355, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15685.360431671143, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,197", - "created": 1614535207.1979744, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 197.97444343566895, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15685.542106628418, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,198", - "created": 1614535207.1980994, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 198.09937477111816, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15685.667037963867, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,198", - "created": 1614535207.1982663, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 198.26626777648926, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15685.833930969238, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,198", - "created": 1614535207.1984112, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 198.411226272583, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15685.978889465332, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" }, { "args": [ "comm-server:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:07,198", - "created": 1614535207.1986723, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,873", + "created": 1742744818.873427, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -196319,25 +38018,24 @@ "lineno": 284, "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 198.67229461669922, + "msecs": 873.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15686.239957809448, + "relativeCreated": 2777.113676071167, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" }, { "args": [ "comm-client:", "(6): 30 59 be 2f 3a 3e" ], - "asctime": "2021-02-28 19:00:07,199", - "created": 1614535207.1997714, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,874", + "created": 1742744818.8744102, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -196346,98 +38044,16 @@ "lineno": 414, "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", "module": "__init__", - "msecs": 199.77140426635742, + "msecs": 874.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15687.339067459106, + "relativeCreated": 2778.096914291382, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,200", - "created": 1614535207.2000954, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 200.09541511535645, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15687.663078308105, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:07,200", - "created": 1614535207.2002716, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 200.2716064453125, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15687.839269638062, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(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 39 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 30 59 be 2f" - ], - "asctime": "2021-02-28 19:00:07,200", - "created": 1614535207.200532, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (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 39 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 30 59 be 2f", - "module": "stp", - "msecs": 200.5319595336914, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 15688.09962272644, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" }, { "args": [ @@ -196447,73 +38063,10885 @@ "status: okay", "None" ], - "asctime": "2021-02-28 19:00:07,200", - "created": 1614535207.2009213, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,874", + "created": 1742744818.8747854, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", "module": "__init__", - "msecs": 200.92129707336426, + "msecs": 874.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15688.488960266113, + "relativeCreated": 2778.4721851348877, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" }, { "args": [ "prot-client:", "__channel_name_response__" ], - "asctime": "2021-02-28 19:00:07,201", - "created": 1614535207.2011144, - "exc_info": null, + "asctime": "2025-03-23 16:46:58,874", + "created": 1742744818.8749185, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 504, + "lineno": 503, "message": "prot-client: Executing callback __channel_name_response__ to process received data", "module": "__init__", - "msecs": 201.11441612243652, + "msecs": 874.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 15688.682079315186, + "relativeCreated": 2778.6052227020264, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" } ], - "msecs": 514.7778987884521, + "msecs": 197.0, "msg": "Connecting Server and Client", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_helpers.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16002.345561981201, + "relativeCreated": 3101.060390472412, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.3136634826660156 + "time_consumption": 0.32245516777038574 }, { "args": [], - "asctime": "2021-02-28 19:00:07,516", - "created": 1614535207.516334, - "exc_info": null, + "asctime": "2025-03-23 16:46:59,197", + "created": 1742744819.1979756, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "automatic_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "Identical secrets set and automatic authentification", + "module": "test_communication", + "moduleLogger": [], + "msecs": 197.0, + "msg": "Identical secrets set and automatic authentification", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3101.6623973846436, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:46:59,198", + "created": 1742744819.198937, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Authentification state of server is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Authentification state of server", + "False", + "" + ], + "asctime": "2025-03-23 16:46:59,198", + "created": 1742744819.198467, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Authentification state of server): False ()", + "module": "test", + "msecs": 198.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3102.153778076172, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Authentification state of server", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:46:59,198", + "created": 1742744819.198703, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Authentification state of server): result = False ()", + "module": "test", + "msecs": 198.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3102.3898124694824, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 198.0, + "msg": "Authentification state of server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3102.623701095581, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002338886260986328 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:46:59,199", + "created": 1742744819.199641, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Authentification state of client is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Authentification state of client", + "False", + "" + ], + "asctime": "2025-03-23 16:46:59,199", + "created": 1742744819.199261, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Authentification state of client): False ()", + "module": "test", + "msecs": 199.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3102.94771194458, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Authentification state of client", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:46:59,199", + "created": 1742744819.1994567, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Authentification state of client): result = False ()", + "module": "test", + "msecs": 199.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3103.1434535980225, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 199.0, + "msg": "Authentification state of client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3103.327751159668, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0001842975616455078 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:01,555", + "created": 1742744821.5556214, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "automatic_authentification", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 139, + "message": "Connecting Server and Client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:46:59,199", + "created": 1742744819.1999652, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 199.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3103.652000427246, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:46:59,200", + "created": 1742744819.2001917, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 200.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3103.8784980773926, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:46:59,200", + "created": 1742744819.2003965, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 200.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3104.083299636841, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:46:59,200", + "created": 1742744819.2005885, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 200.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3104.2752265930176, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:46:59,200", + "created": 1742744819.2007864, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 200.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3104.473114013672, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:46:59,200", + "created": 1742744819.2009678, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 200.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3104.654550552368, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:46:59,201", + "created": 1742744819.2011595, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 201.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3104.846239089966, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:46:59,201", + "created": 1742744819.2014968, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 201.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3105.1836013793945, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: authentification request, data_id: seed", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:46:59,202", + "created": 1742744819.2027633, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 202.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3106.450080871582, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:46:59,203", + "created": 1742744819.203722, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 203.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3107.4087619781494, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:46:59,212", + "created": 1742744819.2124004, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 212.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3116.0871982574463, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:46:59,213", + "created": 1742744819.2132525, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 213.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3116.9393062591553, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:46:59,214", + "created": 1742744819.2143838, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 214.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3118.070602416992, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:46:59,215", + "created": 1742744819.2151647, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 215.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3118.85142326355, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:46:59,215", + "created": 1742744819.2154865, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 215.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3119.173288345337, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:46:59,215", + "created": 1742744819.2158353, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 215.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 3119.5220947265625, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:01,211", + "created": 1742744821.2115004, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 211.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5115.187168121338, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:01,211", + "created": 1742744821.2119591, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 211.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5115.645885467529, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:01,212", + "created": 1742744821.2122438, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 212.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5115.930557250977, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:01,225", + "created": 1742744821.2251582, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 225.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5128.844976425171, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:01,225", + "created": 1742744821.2259011, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 225.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5129.587888717651, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:01,233", + "created": 1742744821.2339644, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 233.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5137.651205062866, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,234", + "created": 1742744821.2349138, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 234.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5138.600587844849, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:01,235", + "created": 1742744821.2354271, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 235.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5139.113903045654, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,236", + "created": 1742744821.2361557, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 236.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5139.842510223389, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,236", + "created": 1742744821.23654, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 236.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5140.2268409729, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: seed", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:01,237", + "created": 1742744821.2373185, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 237.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5141.005277633667, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "__authentificate_create_seed__" + ], + "asctime": "2025-03-23 16:47:01,237", + "created": 1742744821.237598, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", + "module": "__init__", + "msecs": 237.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5141.284704208374, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: authentification response, data_id: seed", + "status: okay", + "'a37202c5ecdf82421bae20184dfadda1847aeca475e1766a54415ac866f4a081'" + ], + "asctime": "2025-03-23 16:47:01,237", + "created": 1742744821.2379608, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'a37202c5ecdf82421bae20184dfadda1847aeca475e1766a54415ac866f4a081'\"", + "module": "__init__", + "msecs": 237.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5141.647577285767, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,239", + "created": 1742744821.2390084, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 239.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5142.695188522339, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:01,239", + "created": 1742744821.2397249, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 239.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5143.411636352539, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:01,239", + "created": 1742744821.2399967, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 239.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5143.683433532715, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 33 37 32" + ], + "asctime": "2025-03-23 16:47:01,240", + "created": 1742744821.2404344, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 33 37 32", + "module": "__init__", + "msecs": 240.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5144.121170043945, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 33 37 32" + ], + "asctime": "2025-03-23 16:47:01,249", + "created": 1742744821.249062, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 61 33 37 32", + "module": "__init__", + "msecs": 249.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5152.748823165894, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 30 32 63 35 65 63 64 66 38 32 34 32 31 62 61 65 32 30 31 38 34 64 66 61 64 64 61 31 38 34 37 61 65 63 61 34 37 35 65 31 37 36 36 61 35 34 34 31 35 61 63 38 36 36 66 34 61 30 38 31 22 7d 96 4c" + ], + "asctime": "2025-03-23 16:47:01,250", + "created": 1742744821.250011, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 30 32 63 35 65 63 64 66 38 32 34 32 31 62 61 65 32 30 31 38 34 64 66 61 64 64 61 31 38 34 37 61 65 63 61 34 37 35 65 31 37 36 36 61 35 34 34 31 35 61 63 38 36 36 66 34 61 30 38 31 22 7d 96 4c", + "module": "__init__", + "msecs": 250.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5153.697729110718, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 30 32 63 35 65 63 64 66 38 32 34 32 31 62 61 65 32 30 31 38 34 64 66 61 64 64 61 31 38 34 37 61 65 63 61 34 37 35 65 31 37 36 36 61 35 34 34 31 35 61 63 38 36 36 66 34 61 30 38 31 22 7d 96 4c" + ], + "asctime": "2025-03-23 16:47:01,258", + "created": 1742744821.2586272, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 30 32 63 35 65 63 64 66 38 32 34 32 31 62 61 65 32 30 31 38 34 64 66 61 64 64 61 31 38 34 37 61 65 63 61 34 37 35 65 31 37 36 36 61 35 34 34 31 35 61 63 38 36 36 66 34 61 30 38 31 22 7d 96 4c", + "module": "__init__", + "msecs": 258.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5162.313938140869, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-server:", + "(4): 2a 7a 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,259", + "created": 1742744821.2594094, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): 2a 7a 3a 3e", + "module": "__init__", + "msecs": 259.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5163.096189498901, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-client:", + "(4): 2a 7a 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,260", + "created": 1742744821.2603726, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): 2a 7a 3a 3e", + "module": "__init__", + "msecs": 260.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5164.059400558472, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "'a37202c5ecdf82421bae20184dfadda1847aeca475e1766a54415ac866f4a081'" + ], + "asctime": "2025-03-23 16:47:01,261", + "created": 1742744821.2612603, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'a37202c5ecdf82421bae20184dfadda1847aeca475e1766a54415ac866f4a081'\"", + "module": "__init__", + "msecs": 261.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5164.947032928467, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "prot-client:", + "__authentificate_create_key__" + ], + "asctime": "2025-03-23 16:47:01,261", + "created": 1742744821.261536, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", + "module": "__init__", + "msecs": 261.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5165.222644805908, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: authentification request, data_id: key", + "status: okay", + "'2b07305f68bfcd4c41489d267e614a33eaa379f93b045bcd2db549c61415c3d354286ec1e890088280a2f57389b3df14e96c3bf69fe2a8f4091211b385f8d6e7'" + ], + "asctime": "2025-03-23 16:47:01,261", + "created": 1742744821.2619195, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'2b07305f68bfcd4c41489d267e614a33eaa379f93b045bcd2db549c61415c3d354286ec1e890088280a2f57389b3df14e96c3bf69fe2a8f4091211b385f8d6e7'\"", + "module": "__init__", + "msecs": 261.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5165.606260299683, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 62 30 37" + ], + "asctime": "2025-03-23 16:47:01,263", + "created": 1742744821.2633069, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 62 30 37", + "module": "__init__", + "msecs": 263.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5166.993618011475, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 62 30 37" + ], + "asctime": "2025-03-23 16:47:01,271", + "created": 1742744821.2719896, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 32 62 30 37", + "module": "__init__", + "msecs": 271.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5175.676345825195, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 33 30 35 66 36 38 62 66 63 64 34 63 34 31 34 38 39 64 32 36 37 65 36 31 34 61 33 33 65 61 61 33 37 39 66 39 33 62 30 34 35 62 63 64 32 64 62 35 34 39 63 36 31 34 31 35 63 33 64 33 35 34 32 38" + ], + "asctime": "2025-03-23 16:47:01,272", + "created": 1742744821.2729769, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 33 30 35 66 36 38 62 66 63 64 34 63 34 31 34 38 39 64 32 36 37 65 36 31 34 61 33 33 65 61 61 33 37 39 66 39 33 62 30 34 35 62 63 64 32 64 62 35 34 39 63 36 31 34 31 35 63 33 64 33 35 34 32 38", + "module": "__init__", + "msecs": 272.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5176.663637161255, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 33 30 35 66 36 38 62 66 63 64 34 63 34 31 34 38 39 64 32 36 37 65 36 31 34 61 33 33 65 61 61 33 37 39 66 39 33 62 30 34 35 62 63 64 32 64 62 35 34 39 63 36 31 34 31 35 63 33 64 33 35 34 32 38" + ], + "asctime": "2025-03-23 16:47:01,281", + "created": 1742744821.2814798, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 33 30 35 66 36 38 62 66 63 64 34 63 34 31 34 38 39 64 32 36 37 65 36 31 34 61 33 33 65 61 61 33 37 39 66 39 33 62 30 34 35 62 63 64 32 64 62 35 34 39 63 36 31 34 31 35 63 33 64 33 35 34 32 38", + "module": "__init__", + "msecs": 281.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5185.166597366333, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 36 65 63 31 65 38 39 30 30 38 38 32 38 30 61 32 66 35 37 33 38 39 62 33 64 66 31 34 65 39 36 63 33 62 66 36 39 66 65 32 61 38 66 34 30 39 31 32 31 31 62 33 38 35 66 38 64 36 65 37 22 7d 77 f7" + ], + "asctime": "2025-03-23 16:47:01,282", + "created": 1742744821.282468, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 36 65 63 31 65 38 39 30 30 38 38 32 38 30 61 32 66 35 37 33 38 39 62 33 64 66 31 34 65 39 36 63 33 62 66 36 39 66 65 32 61 38 66 34 30 39 31 32 31 31 62 33 38 35 66 38 64 36 65 37 22 7d 77 f7", + "module": "__init__", + "msecs": 282.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5186.154842376709, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 36 65 63 31 65 38 39 30 30 38 38 32 38 30 61 32 66 35 37 33 38 39 62 33 64 66 31 34 65 39 36 63 33 62 66 36 39 66 65 32 61 38 66 34 30 39 31 32 31 31 62 33 38 35 66 38 64 36 65 37 22 7d 77 f7" + ], + "asctime": "2025-03-23 16:47:01,291", + "created": 1742744821.291121, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 36 65 63 31 65 38 39 30 30 38 38 32 38 30 61 32 66 35 37 33 38 39 62 33 64 66 31 34 65 39 36 63 33 62 66 36 39 66 65 32 61 38 66 34 30 39 31 32 31 31 62 33 38 35 66 38 64 36 65 37 22 7d 77 f7", + "module": "__init__", + "msecs": 291.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5194.807767868042, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-client:", + "(4): 1d 1c 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,291", + "created": 1742744821.2919075, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): 1d 1c 3a 3e", + "module": "__init__", + "msecs": 291.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5195.594310760498, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:", + "(4): 1d 1c 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,292", + "created": 1742744821.292881, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): 1d 1c 3a 3e", + "module": "__init__", + "msecs": 292.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5196.56777381897, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "'2b07305f68bfcd4c41489d267e614a33eaa379f93b045bcd2db549c61415c3d354286ec1e890088280a2f57389b3df14e96c3bf69fe2a8f4091211b385f8d6e7'" + ], + "asctime": "2025-03-23 16:47:01,293", + "created": 1742744821.2939837, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'2b07305f68bfcd4c41489d267e614a33eaa379f93b045bcd2db549c61415c3d354286ec1e890088280a2f57389b3df14e96c3bf69fe2a8f4091211b385f8d6e7'\"", + "module": "__init__", + "msecs": 293.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5197.670459747314, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "__authentificate_check_key__" + ], + "asctime": "2025-03-23 16:47:01,294", + "created": 1742744821.2943294, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", + "module": "__init__", + "msecs": 294.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5198.016166687012, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2025-03-23 16:47:01,294", + "created": 1742744821.2947295, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 294.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5198.416233062744, + "stack_info": null, + "thread": 140631264474816, + "threadName": "Thread-7 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2025-03-23 16:47:01,295", + "created": 1742744821.2957153, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 295.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5199.402093887329, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2025-03-23 16:47:01,304", + "created": 1742744821.304562, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 304.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5208.248853683472, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,305", + "created": 1742744821.30541, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 305.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5209.096670150757, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2025-03-23 16:47:01,306", + "created": 1742744821.3066022, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 306.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5210.289001464844, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2025-03-23 16:47:01,307", + "created": 1742744821.307379, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 307.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5211.065769195557, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2025-03-23 16:47:01,307", + "created": 1742744821.3076549, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 307.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5211.341619491577, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:01,307", + "created": 1742744821.307868, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentificate_process_feedback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 370, + "message": "prot-client: Got positive authentification feedback", + "module": "__init__", + "msecs": 307.0, + "msg": "%s Got positive authentification feedback", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5211.554765701294, + "stack_info": null, + "thread": 140630785259200, + "threadName": "Thread-8 (_start)" + } + ], + "msecs": 555.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5459.30814743042, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.24775338172912598 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:01,556", + "created": 1742744821.5569766, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Authentification state of server is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Authentification state of server", + "True", + "" + ], + "asctime": "2025-03-23 16:47:01,556", + "created": 1742744821.5564678, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Authentification state of server): True ()", + "module": "test", + "msecs": 556.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5460.1545333862305, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Authentification state of server", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:01,556", + "created": 1742744821.556742, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Authentification state of server): result = True ()", + "module": "test", + "msecs": 556.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5460.428714752197, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 556.0, + "msg": "Authentification state of server is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5460.663318634033, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002346038818359375 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:01,557", + "created": 1742744821.5577753, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Authentification state of client is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Authentification state of client", + "True", + "" + ], + "asctime": "2025-03-23 16:47:01,557", + "created": 1742744821.5573432, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Authentification state of client): True ()", + "module": "test", + "msecs": 557.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5461.030006408691, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Authentification state of client", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:01,557", + "created": 1742744821.5575678, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Authentification state of client): result = True ()", + "module": "test", + "msecs": 557.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5461.254596710205, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 557.0, + "msg": "Authentification state of client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 5461.462020874023, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00020742416381835938 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 2.7141098976135254, + "time_finished": "2025-03-23 16:47:01,557", + "time_start": "2025-03-23 16:46:58,843" + }, + "REQ-0015": { + "args": null, + "asctime": "2025-03-23 16:47:09,981", + "created": 1742744829.981926, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0015", + "module": "__init__", + "moduleLogger": [], + "msecs": 981.0, + "msg": "REQ-0015", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13885.612726211548, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.9934552, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:09,984", + "created": 1742744829.984746, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 984.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13888.432741165161, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:09,986", + "created": 1742744829.9869156, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 986.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13890.602350234985, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:09,987", + "created": 1742744829.9872499, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 987.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13890.936613082886, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:09,987", + "created": 1742744829.9876623, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 987.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13891.349077224731, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:09,987", + "created": 1742744829.9879146, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 987.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13891.60132408142, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:09,988", + "created": 1742744829.988198, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 988.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13891.884803771973, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:09,988", + "created": 1742744829.9884079, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 988.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13892.094612121582, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:09,988", + "created": 1742744829.9886038, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 988.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13892.290592193604, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:09,988", + "created": 1742744829.988808, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 988.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13892.494678497314, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:09,989", + "created": 1742744829.9890249, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 989.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13892.711639404297, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:09,989", + "created": 1742744829.9892383, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 989.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13892.925024032593, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:09,989", + "created": 1742744829.9894664, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 989.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13893.153190612793, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:09,989", + "created": 1742744829.9896724, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 989.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13893.359184265137, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:09,989", + "created": 1742744829.9898524, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 989.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13893.539190292358, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:09,990", + "created": 1742744829.990097, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 990.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13893.783807754517, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:09,990", + "created": 1742744829.990342, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 990.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13894.028663635254, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:09,990", + "created": 1742744829.9905112, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 990.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13894.197940826416, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:09,990", + "created": 1742744829.9906983, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 990.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13894.38509941101, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:09,990", + "created": 1742744829.9908764, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 990.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13894.5631980896, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:09,991", + "created": 1742744829.9910533, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 991.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13894.740104675293, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:09,991", + "created": 1742744829.991217, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 991.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13894.903659820557, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:09,991", + "created": 1742744829.9913838, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 991.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13895.070552825928, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:09,991", + "created": 1742744829.9915457, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 991.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13895.232439041138, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:09,991", + "created": 1742744829.9918494, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 991.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13895.536184310913, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9920306, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13895.71738243103, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9922833, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13895.970106124878, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9923787, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.065473556519, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9924662, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.152973175049, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9925451, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.231889724731, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9926052, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.291971206665, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9926696, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.356344223022, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9927301, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.416902542114, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.992787, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.47364616394, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9928386, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.525382995605, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.992897, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.583795547485, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:09,992", + "created": 1742744829.9929624, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 992.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.64912223816, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.9930232, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.70991897583, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.993086, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.772861480713, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.993154, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.840810775757, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.9932137, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.900415420532, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.993266, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13896.952867507935, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.993334, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.020816802979, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.9933984, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.085189819336, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 993.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.141933441162, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 5.6743621826171875e-05 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:10,337", + "created": 1742744830.3373842, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.9936192, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.305965423584, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.9936798, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.366523742676, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.9937377, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 993.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.424459457397, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:09,993", + "created": 1742744829.9938421, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 993.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.528886795044, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:09,994", + "created": 1742744829.994102, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 994.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.788763046265, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:09,994", + "created": 1742744829.9941692, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 994.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.855997085571, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:09,994", + "created": 1742744829.9942605, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 994.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13897.947311401367, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:09,994", + "created": 1742744829.99461, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 994.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13898.29683303833, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:10,002", + "created": 1742744830.0028162, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 2.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13906.502962112427, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,003", + "created": 1742744830.0030696, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 3.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13906.756401062012, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,004", + "created": 1742744830.0040174, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 4.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13907.70411491394, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:10,004", + "created": 1742744830.0042431, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 4.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13907.92989730835, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:10,004", + "created": 1742744830.0043223, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 4.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13908.009052276611, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:10,004", + "created": 1742744830.0044136, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 4.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13908.100366592407, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:10,004", + "created": 1742744830.0046852, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 4.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13908.371925354004, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:10,012", + "created": 1742744830.0128934, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 12.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13916.580200195312, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,013", + "created": 1742744830.0131688, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 13.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13916.855573654175, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,014", + "created": 1742744830.014151, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 14.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13917.837858200073, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:10,014", + "created": 1742744830.0144172, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 14.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13918.10393333435, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:10,014", + "created": 1742744830.0145109, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 13918.197631835938, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + } + ], + "msecs": 337.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14241.070985794067, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3228733539581299 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:10,338", + "created": 1742744830.3384, + "exc_text": null, + "filename": "test_callbacks.py", + "funcName": "all_did_callback", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 132, + "message": "Registering a correct working Callback", + "module": "test_callbacks", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "'__callback__'", + "10", + "None" + ], + "asctime": "2025-03-23 16:47:10,338", + "created": 1742744830.3381379, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=None", + "module": "__init__", + "msecs": 338.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14241.824626922607, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 338.0, + "msg": "Registering a correct working Callback", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14242.08664894104, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002620220184326172 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:10,540", + "created": 1742744830.5404112, + "exc_text": null, + "filename": "test_callbacks.py", + "funcName": "all_did_callback", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 135, + "message": "Transfering data", + "module": "test_callbacks", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: read data request, data_id: 0", + "status: okay", + "31" + ], + "asctime": "2025-03-23 16:47:10,338", + "created": 1742744830.3388505, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", + "module": "__init__", + "msecs": 338.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14242.537260055542, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2025-03-23 16:47:10,339", + "created": 1742744830.3398674, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 339.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14243.55411529541, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2025-03-23 16:47:10,348", + "created": 1742744830.348593, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 348.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14252.27975845337, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,349", + "created": 1742744830.3494315, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 349.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14253.11827659607, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,350", + "created": 1742744830.3504348, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 350.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14254.121541976929, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: read data request, data_id: 0", + "status: okay", + "31" + ], + "asctime": "2025-03-23 16:47:10,351", + "created": 1742744830.3512375, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "module": "__init__", + "msecs": 351.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14254.924297332764, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "prot-server:", + "__callback__" + ], + "asctime": "2025-03-23 16:47:10,351", + "created": 1742744830.3515432, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __callback__ to process received data", + "module": "__init__", + "msecs": 351.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14255.229949951172, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: read data response, data_id: 0", + "status: okay", + "33" + ], + "asctime": "2025-03-23 16:47:10,351", + "created": 1742744830.3518844, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", + "module": "__init__", + "msecs": 351.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14255.571126937866, + "stack_info": null, + "thread": 140630198032064, + "threadName": "Thread-21 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2025-03-23 16:47:10,353", + "created": 1742744830.353655, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 353.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14257.341861724854, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2025-03-23 16:47:10,362", + "created": 1742744830.3624241, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 362.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14266.110897064209, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "comm-server:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,363", + "created": 1742744830.3632662, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 363.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14266.952991485596, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "comm-client:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,364", + "created": 1742744830.3643227, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 364.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14268.009424209595, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: okay", + "33" + ], + "asctime": "2025-03-23 16:47:10,365", + "created": 1742744830.365106, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "module": "__init__", + "msecs": 365.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14268.792867660522, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:10,365", + "created": 1742744830.3654273, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 365.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14269.114017486572, + "stack_info": null, + "thread": 140629711517376, + "threadName": "Thread-22 (_start)" + } + ], + "msecs": 540.0, + "msg": "Transfering data", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14444.097995758057, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.17498397827148438 + }, + { + "args": [ + "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", + "" + ], + "asctime": "2025-03-23 16:47:10,541", + "created": 1742744830.5415418, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Message stored inside callback", + "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", + "" + ], + "asctime": "2025-03-23 16:47:10,541", + "created": 1742744830.5410767, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", + "module": "test", + "msecs": 541.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14444.76342201233, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Message stored inside callback", + "=", + "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", + "" + ], + "asctime": "2025-03-23 16:47:10,541", + "created": 1742744830.5413325, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", + "module": "test", + "msecs": 541.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14445.019245147705, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 541.0, + "msg": "Message stored inside callback is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14445.228576660156, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00020933151245117188 + }, + { + "args": [ + "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", + "" + ], + "asctime": "2025-03-23 16:47:10,542", + "created": 1742744830.5423324, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Message received by client", + "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", + "" + ], + "asctime": "2025-03-23 16:47:10,541", + "created": 1742744830.5418797, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", + "module": "test", + "msecs": 541.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14445.566415786743, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Message received by client", + "=", + "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", + "" + ], + "asctime": "2025-03-23 16:47:10,542", + "created": 1742744830.5421321, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", + "module": "test", + "msecs": 542.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14445.818901062012, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 542.0, + "msg": "Message received by client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14446.019172668457, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002002716064453125 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.5604064464569092, + "time_finished": "2025-03-23 16:47:10,542", + "time_start": "2025-03-23 16:47:09,981" + }, + "REQ-0016": { + "args": null, + "asctime": "2025-03-23 16:47:10,543", + "created": 1742744830.543113, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0016", + "module": "__init__", + "moduleLogger": [], + "msecs": 543.0, + "msg": "REQ-0016", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14446.799755096436, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.551174, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:10,544", + "created": 1742744830.544577, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 544.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14448.26364517212, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:10,546", + "created": 1742744830.546287, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 546.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14449.973821640015, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:10,546", + "created": 1742744830.5467188, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 546.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14450.405597686768, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:10,547", + "created": 1742744830.5471954, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14450.882196426392, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:10,547", + "created": 1742744830.5474384, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14451.125144958496, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:10,547", + "created": 1742744830.5477505, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14451.43723487854, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:10,547", + "created": 1742744830.5479639, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 547.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14451.650619506836, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:10,548", + "created": 1742744830.5481603, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14451.847076416016, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:10,548", + "created": 1742744830.5483522, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14452.039003372192, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:10,548", + "created": 1742744830.5485895, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14452.276229858398, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:10,548", + "created": 1742744830.5488198, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 548.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14452.50654220581, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5490336, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14452.720403671265, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5492413, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14452.928066253662, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5494254, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.112125396729, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.549527, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.213691711426, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5495884, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.275203704834, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.549642, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.328847885132, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5496976, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.384399414062, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5497544, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.441143035889, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5498078, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.494548797607, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5498624, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.549146652222, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.5499127, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.599452972412, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:10,549", + "created": 1742744830.549965, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 549.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.651666641235, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5500708, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.757524490356, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5501297, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.816413879395, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5502024, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.88913154602, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5502617, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14453.948497772217, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5503159, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.002618789673, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5503678, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.054594039917, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5504234, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.110145568848, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5504806, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.167366027832, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5505364, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.223155975342, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5505917, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.278469085693, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5506413, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.328060150146, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5506957, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.382419586182, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5507529, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.439640045166, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5508049, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.49161529541, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5508642, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.550981521606, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5509195, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.606294631958, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:10,550", + "created": 1742744830.5509725, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 550.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.659223556519, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.5510254, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.71215248108, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.551076, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.762697219849, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.5511258, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.81252670288, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 551.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.86068725586, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 4.8160552978515625e-05 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:10,894", + "created": 1742744830.8948014, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.5512965, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14454.983234405518, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.55135, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14455.036878585815, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.5514026, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14455.089330673218, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.551491, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 551.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14455.177783966064, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.5516925, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14455.379247665405, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.5517497, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14455.43646812439, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.5518036, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 551.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14455.490350723267, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:10,551", + "created": 1742744830.5519645, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 551.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14455.65128326416, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:10,560", + "created": 1742744830.5601842, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 560.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14463.871002197266, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,560", + "created": 1742744830.5604947, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 560.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14464.181423187256, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,561", + "created": 1742744830.5614607, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 561.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14465.147495269775, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:10,561", + "created": 1742744830.5617492, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 561.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14465.435981750488, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:10,561", + "created": 1742744830.5618415, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 561.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14465.5282497406, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:10,561", + "created": 1742744830.561958, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 561.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14465.644836425781, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:10,562", + "created": 1742744830.5622976, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 562.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14465.984344482422, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:10,570", + "created": 1742744830.5704632, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 570.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14474.149942398071, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,570", + "created": 1742744830.5707583, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 570.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14474.445104598999, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,571", + "created": 1742744830.5717125, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 571.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14475.399255752563, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:10,571", + "created": 1742744830.5719688, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 571.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14475.655555725098, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:10,572", + "created": 1742744830.5720565, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 572.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14475.743293762207, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + } + ], + "msecs": 894.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14798.488140106201, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.32274484634399414 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:10,895", + "created": 1742744830.8957481, + "exc_text": null, + "filename": "test_callbacks.py", + "funcName": "all_sid_callback", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 145, + "message": "Registering a correct working Callback", + "module": "test_callbacks", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "'__callback__'", + "None", + "0" + ], + "asctime": "2025-03-23 16:47:10,895", + "created": 1742744830.8954985, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__callback__' for SID=None and DID=0", + "module": "__init__", + "msecs": 895.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14799.185276031494, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 895.0, + "msg": "Registering a correct working Callback", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14799.434900283813, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00024962425231933594 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:11,097", + "created": 1742744831.097601, + "exc_text": null, + "filename": "test_callbacks.py", + "funcName": "all_sid_callback", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 148, + "message": "Transfering data", + "module": "test_callbacks", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: read data request, data_id: 0", + "status: okay", + "31" + ], + "asctime": "2025-03-23 16:47:10,896", + "created": 1742744830.896193, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", + "module": "__init__", + "msecs": 896.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14799.879789352417, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2025-03-23 16:47:10,897", + "created": 1742744830.8972237, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 897.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14800.910472869873, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2025-03-23 16:47:10,905", + "created": 1742744830.905935, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 905.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14809.621810913086, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,906", + "created": 1742744830.9068341, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 906.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14810.520887374878, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,907", + "created": 1742744830.9079273, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 907.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14811.614036560059, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: read data request, data_id: 0", + "status: okay", + "31" + ], + "asctime": "2025-03-23 16:47:10,908", + "created": 1742744830.9086895, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "module": "__init__", + "msecs": 908.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14812.376260757446, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "prot-server:", + "__callback__" + ], + "asctime": "2025-03-23 16:47:10,908", + "created": 1742744830.908971, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __callback__ to process received data", + "module": "__init__", + "msecs": 908.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14812.657833099365, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: read data response, data_id: 0", + "status: okay", + "33" + ], + "asctime": "2025-03-23 16:47:10,909", + "created": 1742744830.9093385, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", + "module": "__init__", + "msecs": 909.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14813.02523612976, + "stack_info": null, + "thread": 140629703124672, + "threadName": "Thread-23 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2025-03-23 16:47:10,910", + "created": 1742744830.9106543, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 910.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14814.341068267822, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2025-03-23 16:47:10,919", + "created": 1742744830.9193134, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 919.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14823.000192642212, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "comm-server:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,920", + "created": 1742744830.9201548, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 920.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14823.841571807861, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "comm-client:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2025-03-23 16:47:10,921", + "created": 1742744830.921252, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 921.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14824.938774108887, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: okay", + "33" + ], + "asctime": "2025-03-23 16:47:10,922", + "created": 1742744830.9220045, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "module": "__init__", + "msecs": 922.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14825.691223144531, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:10,922", + "created": 1742744830.9223819, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 922.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 14826.068639755249, + "stack_info": null, + "thread": 140629694731968, + "threadName": "Thread-24 (_start)" + } + ], + "msecs": 97.0, + "msg": "Transfering data", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15001.287698745728, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.17521905899047852 + }, + { + "args": [ + "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", + "" + ], + "asctime": "2025-03-23 16:47:11,098", + "created": 1742744831.0987494, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Message stored inside callback", + "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", + "" + ], + "asctime": "2025-03-23 16:47:11,098", + "created": 1742744831.0982752, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", + "module": "test", + "msecs": 98.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15001.961946487427, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Message stored inside callback", + "=", + "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", + "" + ], + "asctime": "2025-03-23 16:47:11,098", + "created": 1742744831.0985358, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", + "module": "test", + "msecs": 98.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15002.222537994385, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 98.0, + "msg": "Message stored inside callback is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15002.43616104126, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.000213623046875 + }, + { + "args": [ + "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", + "" + ], + "asctime": "2025-03-23 16:47:11,099", + "created": 1742744831.099475, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Message received by client", + "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", + "" + ], + "asctime": "2025-03-23 16:47:11,099", + "created": 1742744831.0990884, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", + "module": "test", + "msecs": 99.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15002.775192260742, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Message received by client", + "=", + "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", + "" + ], + "asctime": "2025-03-23 16:47:11,099", + "created": 1742744831.099288, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", + "module": "test", + "msecs": 99.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15002.97474861145, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 99.0, + "msg": "Message received by client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15003.161668777466, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.000186920166015625 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.5563619136810303, + "time_finished": "2025-03-23 16:47:11,099", + "time_start": "2025-03-23 16:47:10,543" + }, + "REQ-0017": { + "args": null, + "asctime": "2025-03-23 16:47:11,100", + "created": 1742744831.100227, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0017", + "module": "__init__", + "moduleLogger": [], + "msecs": 100.0, + "msg": "REQ-0017", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15003.913879394531, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:11,111", + "created": 1742744831.1119537, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:11,101", + "created": 1742744831.1019735, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 101.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15005.66029548645, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:11,103", + "created": 1742744831.103266, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 103.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15006.95276260376, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:11,103", + "created": 1742744831.1035612, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 103.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15007.247924804688, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:11,104", + "created": 1742744831.1040008, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 104.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15007.68756866455, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:11,104", + "created": 1742744831.104251, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 104.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15007.937669754028, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:11,104", + "created": 1742744831.1045322, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 104.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15008.219003677368, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:11,104", + "created": 1742744831.104757, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 104.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15008.443832397461, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:11,104", + "created": 1742744831.1049519, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 104.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15008.638620376587, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:11,105", + "created": 1742744831.1051548, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 105.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15008.841514587402, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:11,105", + "created": 1742744831.1053705, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 105.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15009.05728340149, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:11,105", + "created": 1742744831.105585, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 105.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15009.27186012268, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:11,105", + "created": 1742744831.105812, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 105.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15009.498834609985, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:11,105", + "created": 1742744831.1059878, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 105.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15009.674549102783, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:11,106", + "created": 1742744831.1061828, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 106.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15009.869575500488, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:11,106", + "created": 1742744831.1063564, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 106.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15010.043144226074, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:11,106", + "created": 1742744831.1065412, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 106.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15010.227918624878, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:11,106", + "created": 1742744831.106707, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 106.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15010.393857955933, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:11,106", + "created": 1742744831.1068938, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 106.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15010.58053970337, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:11,107", + "created": 1742744831.1070683, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 107.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15010.755062103271, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:11,107", + "created": 1742744831.1072333, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 107.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15010.92004776001, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:11,107", + "created": 1742744831.1073904, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 107.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15011.077165603638, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:11,107", + "created": 1742744831.1075456, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 107.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15011.232376098633, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:11,107", + "created": 1742744831.1077216, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 107.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15011.40832901001, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,108", + "created": 1742744831.108012, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 108.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15011.698722839355, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:11,108", + "created": 1742744831.108188, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 108.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15011.874675750732, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:11,108", + "created": 1742744831.1084025, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 108.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15012.089252471924, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:11,108", + "created": 1742744831.1085725, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 108.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15012.259244918823, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:11,108", + "created": 1742744831.1087482, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 108.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15012.434959411621, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:11,108", + "created": 1742744831.1089098, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 108.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15012.596607208252, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:11,109", + "created": 1742744831.109083, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 109.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15012.76969909668, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:11,109", + "created": 1742744831.1092594, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 109.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15012.946128845215, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:11,109", + "created": 1742744831.1094332, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 109.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15013.11993598938, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:11,109", + "created": 1742744831.109605, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 109.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15013.291835784912, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,109", + "created": 1742744831.1097608, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 109.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15013.447523117065, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:11,109", + "created": 1742744831.1099377, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 109.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15013.624429702759, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:11,110", + "created": 1742744831.1101384, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 110.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15013.825178146362, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:11,110", + "created": 1742744831.1103055, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 110.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15013.992309570312, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:11,110", + "created": 1742744831.1106002, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 110.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15014.286994934082, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:11,110", + "created": 1742744831.110935, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 110.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15014.62173461914, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:11,111", + "created": 1742744831.1112201, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 111.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15014.906883239746, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:11,111", + "created": 1742744831.1114533, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 111.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15015.140056610107, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:11,111", + "created": 1742744831.1116202, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 111.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15015.306949615479, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,111", + "created": 1742744831.1117833, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 111.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15015.470027923584, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 111.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15015.640497207642, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0001704692840576172 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:11,457", + "created": 1742744831.4571655, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:11,112", + "created": 1742744831.1123385, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 112.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15016.025304794312, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:11,112", + "created": 1742744831.1125107, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 112.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15016.197443008423, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,112", + "created": 1742744831.1126797, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 112.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15016.366481781006, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:11,112", + "created": 1742744831.112954, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 112.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15016.640663146973, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:11,113", + "created": 1742744831.113563, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 113.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15017.249822616577, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:11,113", + "created": 1742744831.1137593, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 113.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15017.446041107178, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:11,113", + "created": 1742744831.1139417, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 113.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15017.62843132019, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:11,115", + "created": 1742744831.1151898, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 115.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15018.876552581787, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:11,123", + "created": 1742744831.1238592, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 123.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15027.545928955078, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,124", + "created": 1742744831.1247063, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 124.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15028.393030166626, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,125", + "created": 1742744831.1259172, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 125.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15029.603958129883, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:11,126", + "created": 1742744831.1266882, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 126.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15030.375003814697, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:11,126", + "created": 1742744831.1269345, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 126.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15030.62129020691, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:11,127", + "created": 1742744831.127239, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 127.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15030.925750732422, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:11,128", + "created": 1742744831.128088, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 128.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15031.774759292603, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:11,136", + "created": 1742744831.136718, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 136.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15040.404796600342, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,137", + "created": 1742744831.1374493, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 137.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15041.136026382446, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,138", + "created": 1742744831.1386106, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 138.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15042.29736328125, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:11,139", + "created": 1742744831.1392689, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 139.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15042.95563697815, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:11,139", + "created": 1742744831.139507, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 139.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15043.193817138672, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + } + ], + "msecs": 457.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15360.852241516113, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3176584243774414 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:11,458", + "created": 1742744831.4582777, + "exc_text": null, + "filename": "test_callbacks.py", + "funcName": "all_callback", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 158, + "message": "Registering a correct working Callback", + "module": "test_callbacks", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "'__callback__'", + "None", + "None" + ], + "asctime": "2025-03-23 16:47:11,457", + "created": 1742744831.457938, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__callback__' for SID=None and DID=None", + "module": "__init__", + "msecs": 457.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15361.624717712402, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 458.0, + "msg": "Registering a correct working Callback", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15361.964464187622, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00033974647521972656 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:11,660", + "created": 1742744831.6603842, + "exc_text": null, + "filename": "test_callbacks.py", + "funcName": "all_callback", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 161, + "message": "Transfering data", + "module": "test_callbacks", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: read data request, data_id: 0", + "status: okay", + "31" + ], + "asctime": "2025-03-23 16:47:11,458", + "created": 1742744831.4587927, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", + "module": "__init__", + "msecs": 458.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15362.479448318481, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2025-03-23 16:47:11,460", + "created": 1742744831.4607913, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 460.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15364.47811126709, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" + ], + "asctime": "2025-03-23 16:47:11,469", + "created": 1742744831.4694827, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", + "module": "__init__", + "msecs": 469.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15373.169422149658, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "comm-client:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,470", + "created": 1742744831.470385, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 470.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15374.071836471558, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "comm-server:", + "(5): 5b f5 78 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,471", + "created": 1742744831.471489, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", + "module": "__init__", + "msecs": 471.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15375.175714492798, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: read data request, data_id: 0", + "status: okay", + "31" + ], + "asctime": "2025-03-23 16:47:11,472", + "created": 1742744831.4722838, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", + "module": "__init__", + "msecs": 472.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15375.970602035522, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "prot-server:", + "__callback__" + ], + "asctime": "2025-03-23 16:47:11,472", + "created": 1742744831.472575, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __callback__ to process received data", + "module": "__init__", + "msecs": 472.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15376.261711120605, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: read data response, data_id: 0", + "status: okay", + "33" + ], + "asctime": "2025-03-23 16:47:11,472", + "created": 1742744831.4729285, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", + "module": "__init__", + "msecs": 472.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15376.615285873413, + "stack_info": null, + "thread": 140629686339264, + "threadName": "Thread-25 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2025-03-23 16:47:11,473", + "created": 1742744831.4738755, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 473.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15377.562284469604, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" + ], + "asctime": "2025-03-23 16:47:11,482", + "created": 1742744831.4826245, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", + "module": "__init__", + "msecs": 482.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15386.311292648315, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "comm-server:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,483", + "created": 1742744831.4834638, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 483.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15387.150526046753, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "comm-client:", + "(5): e1 8c bb 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,484", + "created": 1742744831.484569, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", + "module": "__init__", + "msecs": 484.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15388.255834579468, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: read data response, data_id: 0", + "status: okay", + "33" + ], + "asctime": "2025-03-23 16:47:11,485", + "created": 1742744831.4853203, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", + "module": "__init__", + "msecs": 485.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15389.007091522217, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,485", + "created": 1742744831.485639, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 485.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15389.325857162476, + "stack_info": null, + "thread": 140629677946560, + "threadName": "Thread-26 (_start)" + } + ], + "msecs": 660.0, + "msg": "Transfering data", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15564.0709400177, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.1747450828552246 + }, + { + "args": [ + "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", + "" + ], + "asctime": "2025-03-23 16:47:11,661", + "created": 1742744831.661641, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Message stored inside callback", + "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", + "" + ], + "asctime": "2025-03-23 16:47:11,661", + "created": 1742744831.6610758, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", + "module": "test", + "msecs": 661.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15564.762592315674, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Message stored inside callback", + "=", + "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", + "" + ], + "asctime": "2025-03-23 16:47:11,661", + "created": 1742744831.661362, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", + "module": "test", + "msecs": 661.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15565.048694610596, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 661.0, + "msg": "Message stored inside callback is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15565.327644348145, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002789497375488281 + }, + { + "args": [ + "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", + "" + ], + "asctime": "2025-03-23 16:47:11,662", + "created": 1742744831.6625235, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Message received by client", + "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", + "" + ], + "asctime": "2025-03-23 16:47:11,662", + "created": 1742744831.6620104, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", + "module": "test", + "msecs": 662.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15565.697193145752, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Message received by client", + "=", + "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", + "" + ], + "asctime": "2025-03-23 16:47:11,662", + "created": 1742744831.662306, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", + "module": "test", + "msecs": 662.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15565.992832183838, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 662.0, + "msg": "Message received by client is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15566.210269927979, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.000217437744140625 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.5622963905334473, + "time_finished": "2025-03-23 16:47:11,662", + "time_start": "2025-03-23 16:47:11,100" + }, + "REQ-0018": { + "args": null, + "asctime": "2025-03-23 16:47:11,663", + "created": 1742744831.6632657, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0018", + "module": "__init__", + "moduleLogger": [], + "msecs": 663.0, + "msg": "REQ-0018", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15566.952466964722, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6736455, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:11,665", + "created": 1742744831.6656654, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 665.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15569.352149963379, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:11,670", + "created": 1742744831.6709616, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 670.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15574.648380279541, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.671056, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15574.742794036865, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6711788, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15574.865579605103, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6712484, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15574.9351978302, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6713297, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.016498565674, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6713908, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.077533721924, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.671449, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.135707855225, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.671505, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.191736221313, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6715674, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.254201889038, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6716297, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.316429138184, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6716912, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.377941131592, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6717556, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.44231414795, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6718078, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.494527816772, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.671864, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.55079460144, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6719255, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.612306594849, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:11,671", + "created": 1742744831.6719797, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 671.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.666427612305, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6720371, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.723886489868, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6720953, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.782060623169, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6721501, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.836896896362, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6722026, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.889348983765, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6722536, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.940370559692, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6723073, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15575.99401473999, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6724045, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.091289520264, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6724615, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.148271560669, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6725326, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.219320297241, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6725888, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.27558708191, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6726432, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.329946517944, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.672701, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.387643814087, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6727605, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.447248458862, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.672819, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.505661010742, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6728773, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.564073562622, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6729348, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.621532440186, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,672", + "created": 1742744831.6729865, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 672.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.67326927185, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6730428, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.729536056519, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6731024, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.789140701294, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6731598, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.846599578857, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6732194, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.906204223633, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6732774, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15576.964139938354, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.673332, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.018737792969, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6733844, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.071189880371, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6734695, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.15630531311, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6735582, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.244997024536, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 673.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.332258224487, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 8.726119995117188e-05 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:12,017", + "created": 1742744832.0176136, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6738172, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.50391960144, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6738799, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.566623687744, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:11,673", + "created": 1742744831.6739368, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 673.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.62360572815, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:11,674", + "created": 1742744831.6740332, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 674.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.719926834106, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:11,674", + "created": 1742744831.674264, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 674.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15577.950716018677, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:11,674", + "created": 1742744831.6743329, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 674.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15578.019618988037, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:11,674", + "created": 1742744831.674395, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 674.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15578.081846237183, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:11,674", + "created": 1742744831.6747124, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 674.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15578.399181365967, + "stack_info": null, + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:11,682", + "created": 1742744831.6829233, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 682.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15586.610078811646, + "stack_info": null, + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,683", + "created": 1742744831.6832023, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 683.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15586.889028549194, + "stack_info": null, + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,684", + "created": 1742744831.6841474, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 684.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15587.834119796753, + "stack_info": null, + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:11,684", + "created": 1742744831.6843827, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 684.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15588.069438934326, + "stack_info": null, + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:11,684", + "created": 1742744831.6844628, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 684.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15588.149547576904, + "stack_info": null, + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:11,684", + "created": 1742744831.6845605, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 684.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15588.247299194336, + "stack_info": null, + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:11,684", + "created": 1742744831.684848, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 684.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15588.534832000732, + "stack_info": null, + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:11,693", + "created": 1742744831.693058, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 693.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15596.744775772095, + "stack_info": null, + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,693", + "created": 1742744831.6933556, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 693.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15597.042322158813, + "stack_info": null, + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:11,694", + "created": 1742744831.6942573, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 694.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15597.944021224976, + "stack_info": null, + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:11,694", + "created": 1742744831.6945255, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 694.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15598.212242126465, + "stack_info": null, + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:11,694", + "created": 1742744831.6946306, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 694.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15598.317384719849, + "stack_info": null, + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" + } + ], + "msecs": 17.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 15921.300411224365, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3229830265045166 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:12,019", + "created": 1742744832.019383, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", @@ -196530,26 +48958,25 @@ "None", "None" ], - "asctime": "2021-02-28 19:00:07,515", - "created": 1614535207.5154274, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,018", + "created": 1742744832.0183418, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__callback3__' for SID=None and DID=None", "module": "__init__", - "msecs": 515.4273509979248, + "msecs": 18.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16002.995014190674, + "relativeCreated": 15922.028541564941, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -196559,26 +48986,25 @@ "None", "0" ], - "asctime": "2021-02-28 19:00:07,515", - "created": 1614535207.515738, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,018", + "created": 1742744832.0186512, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__callback2__' for SID=None and DID=0", "module": "__init__", - "msecs": 515.7380104064941, + "msecs": 18.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16003.305673599243, + "relativeCreated": 15922.338008880615, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -196588,26 +49014,25 @@ "10", "None" ], - "asctime": "2021-02-28 19:00:07,515", - "created": 1614535207.5159693, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,018", + "created": 1742744832.01895, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__callback1__' for SID=10 and DID=None", "module": "__init__", - "msecs": 515.9692764282227, + "msecs": 18.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16003.536939620972, + "relativeCreated": 15922.63674736023, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -196617,46 +49042,44 @@ "10", "0" ], - "asctime": "2021-02-28 19:00:07,516", - "created": 1614535207.516174, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,019", + "created": 1742744832.0191944, "exc_text": null, "filename": "__init__.py", "funcName": "add", "levelname": "DEBUG", "levelno": 10, - "lineno": 170, + "lineno": 172, "message": "prot-server: Adding callback '__callback__' for SID=10 and DID=0", "module": "__init__", - "msecs": 516.1740779876709, + "msecs": 19.0, "msg": "%s Adding callback %s for SID=%s and DID=%s", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16003.74174118042, + "relativeCreated": 15922.881126403809, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 516.334056854248, + "msecs": 19.0, "msg": "Registering all kind of Callbacks", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16003.901720046997, + "relativeCreated": 15923.069715499878, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00015997886657714844 + "time_consumption": 0.00018858909606933594 }, { "args": [], - "asctime": "2021-02-28 19:00:07,718", - "created": 1614535207.718068, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,221", + "created": 1742744832.2215497, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", @@ -196674,26 +49097,25 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:07,516", - "created": 1614535207.5167267, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,019", + "created": 1742744832.019842, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 516.7267322540283, + "msecs": 19.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16004.294395446777, + "relativeCreated": 15923.528671264648, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -196701,9 +49123,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:07,517", - "created": 1614535207.5177517, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,021", + "created": 1742744832.0215652, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -196712,25 +49133,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 517.7516937255859, + "msecs": 21.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16005.319356918335, + "relativeCreated": 15925.251960754395, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:07,526", - "created": 1614535207.5262783, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,030", + "created": 1742744832.030429, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -196739,300 +49159,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 526.2782573699951, + "msecs": 30.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16013.845920562744, + "relativeCreated": 15934.115648269653, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,526", - "created": 1614535207.5266733, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 526.6733169555664, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16014.240980148315, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:07,526", - "created": 1614535207.5268734, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 526.8733501434326, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16014.441013336182, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,527", - "created": 1614535207.5271246, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 527.1246433258057, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16014.692306518555, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,527", - "created": 1614535207.5272863, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 527.2862911224365, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16014.853954315186, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,527", - "created": 1614535207.5275624, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 527.5623798370361, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16015.130043029785, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,527", - "created": 1614535207.5277295, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 527.7295112609863, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16015.297174453735, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,527", - "created": 1614535207.52795, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 527.9500484466553, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16015.517711639404, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,528", - "created": 1614535207.5281012, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 528.1012058258057, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16015.668869018555, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,528", - "created": 1614535207.5283148, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 528.3148288726807, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16015.88249206543, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,528", - "created": 1614535207.5284674, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 528.4674167633057, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16016.035079956055, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:07,528", - "created": 1614535207.5287519, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,031", + "created": 1742744832.031272, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -197041,25 +49185,24 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 528.7518501281738, + "msecs": 31.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16016.319513320923, + "relativeCreated": 15934.958696365356, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:07,529", - "created": 1614535207.5297935, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,032", + "created": 1742744832.0323663, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -197068,98 +49211,16 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 529.7935009002686, + "msecs": 32.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16017.361164093018, + "relativeCreated": 15936.053037643433, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,530", - "created": 1614535207.5301163, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 530.1163196563721, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16017.683982849121, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:07,530", - "created": 1614535207.5303156, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 530.315637588501, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16017.88330078125, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:07,530", - "created": 1614535207.530597, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 530.5969715118408, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16018.16463470459, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ @@ -197169,54 +49230,52 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:07,531", - "created": 1614535207.531045, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,033", + "created": 1742744832.0331273, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 531.0449600219727, + "msecs": 33.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16018.612623214722, + "relativeCreated": 15936.814069747925, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "prot-server:", "__callback__" ], - "asctime": "2021-02-28 19:00:07,531", - "created": 1614535207.5312645, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,033", + "created": 1742744832.0334005, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __callback__ to process received data", "module": "__init__", - "msecs": 531.2645435333252, + "msecs": 33.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16018.832206726074, + "relativeCreated": 15937.087297439575, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ @@ -197226,36 +49285,34 @@ "status: okay", "33" ], - "asctime": "2021-02-28 19:00:07,531", - "created": 1614535207.531565, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,033", + "created": 1742744832.0337257, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 531.5649509429932, + "msecs": 33.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16019.132614135742, + "relativeCreated": 15937.41250038147, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-02-28 19:00:07,532", - "created": 1614535207.5325625, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,034", + "created": 1742744832.034691, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -197264,25 +49321,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 532.5624942779541, + "msecs": 34.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16020.130157470703, + "relativeCreated": 15938.377857208252, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4" ], - "asctime": "2021-02-28 19:00:07,541", - "created": 1614535207.5412164, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,043", + "created": 1742744832.0434577, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -197291,300 +49347,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 33 7d e4", "module": "__init__", - "msecs": 541.2163734436035, + "msecs": 43.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16028.784036636353, + "relativeCreated": 15947.144508361816, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,541", - "created": 1614535207.5415742, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 541.574239730835, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16029.141902923584, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:07,541", - "created": 1614535207.5418143, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 541.8143272399902, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16029.38199043274, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,542", - "created": 1614535207.5420833, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 542.0832633972168, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16029.650926589966, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,542", - "created": 1614535207.5422547, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 542.2546863555908, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16029.82234954834, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,542", - "created": 1614535207.5425017, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 542.50168800354, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16030.069351196289, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,542", - "created": 1614535207.5426528, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 542.6528453826904, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16030.22050857544, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,542", - "created": 1614535207.5428667, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 542.8667068481445, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16030.434370040894, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,543", - "created": 1614535207.5430238, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 543.0238246917725, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16030.591487884521, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,543", - "created": 1614535207.5431943, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 543.1942939758301, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16030.76195716858, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,543", - "created": 1614535207.5433228, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 543.3228015899658, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16030.890464782715, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-server:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-02-28 19:00:07,543", - "created": 1614535207.5435765, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,044", + "created": 1742744832.044333, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -197593,25 +49373,24 @@ "lineno": 284, "message": "comm-server: TX -> (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 543.5764789581299, + "msecs": 44.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16031.144142150879, + "relativeCreated": 15948.019742965698, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-client:", "(5): e1 8c bb 3a 3e" ], - "asctime": "2021-02-28 19:00:07,544", - "created": 1614535207.544535, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,045", + "created": 1742744832.0454042, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -197620,98 +49399,16 @@ "lineno": 414, "message": "comm-client: RX <- (5): e1 8c bb 3a 3e", "module": "__init__", - "msecs": 544.5349216461182, + "msecs": 45.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16032.102584838867, + "relativeCreated": 15949.090957641602, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,544", - "created": 1614535207.5447915, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 544.7914600372314, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16032.35912322998, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:07,544", - "created": 1614535207.544964, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 544.964075088501, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16032.53173828125, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb" - ], - "asctime": "2021-02-28 19:00:07,545", - "created": 1614535207.5452013, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 33 7d e4 e1 8c bb", - "module": "stp", - "msecs": 545.201301574707, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16032.768964767456, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ @@ -197721,81 +49418,78 @@ "status: okay", "33" ], - "asctime": "2021-02-28 19:00:07,545", - "created": 1614535207.5455945, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,046", + "created": 1742744832.0461786, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"33\"", "module": "__init__", - "msecs": 545.5944538116455, + "msecs": 46.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16033.162117004395, + "relativeCreated": 15949.865341186523, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:07,545", - "created": 1614535207.545855, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,046", + "created": 1742744832.0464795, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 545.8550453186035, + "msecs": 46.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16033.422708511353, + "relativeCreated": 15950.16622543335, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" } ], - "msecs": 718.0678844451904, + "msecs": 221.0, "msg": "Transfering data", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16205.63554763794, + "relativeCreated": 16125.236511230469, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.17221283912658691 + "time_consumption": 0.17507028579711914 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:07,719", - "created": 1614535207.7192018, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,222", + "created": 1742744832.2227736, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", "module": "test", "moduleLogger": [ @@ -197805,9 +49499,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:07,718", - "created": 1614535207.7187333, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,222", + "created": 1742744832.2222302, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -197816,72 +49509,71 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 718.7333106994629, + "msecs": 222.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16206.300973892212, + "relativeCreated": 16125.916957855225, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message stored inside callback", + "=", "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:07,718", - "created": 1614535207.7189865, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,222", + "created": 1742744832.2225451, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 718.9865112304688, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 222.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16206.554174423218, + "relativeCreated": 16126.231908798218, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 719.2018032073975, + "msecs": 222.0, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16206.769466400146, + "relativeCreated": 16126.460313796997, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00021529197692871094 + "time_consumption": 0.00022840499877929688 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-02-28 19:00:07,719", - "created": 1614535207.7199035, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,223", + "created": 1742744832.2234979, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} and Type is ).", "module": "test", "moduleLogger": [ @@ -197891,9 +49583,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33}", "" ], - "asctime": "2021-02-28 19:00:07,719", - "created": 1614535207.7195222, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,223", + "created": 1742744832.2231045, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -197902,63 +49593,62 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 33} ()", "module": "test", - "msecs": 719.52223777771, + "msecs": 223.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16207.089900970459, + "relativeCreated": 16126.79123878479, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message received by client", + "=", "{'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:07,719", - "created": 1614535207.7197187, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,223", + "created": 1742744832.223306, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 33, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 719.7186946868896, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 223.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16207.286357879639, + "relativeCreated": 16126.99270248413, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 719.9034690856934, + "msecs": 223.0, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16207.471132278442, + "relativeCreated": 16127.184629440308, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00018477439880371094 + "time_consumption": 0.0001919269561767578 }, { "args": [], - "asctime": "2021-02-28 19:00:07,720", - "created": 1614535207.7204957, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,224", + "created": 1742744832.2240722, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", @@ -197975,9 +49665,8 @@ "10", "0" ], - "asctime": "2021-02-28 19:00:07,720", - "created": 1614535207.7202532, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,223", + "created": 1742744832.2238712, "exc_text": null, "filename": "__init__.py", "funcName": "add", @@ -197986,35 +49675,34 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback__' for service_id (10) and data_id (0)!", "module": "__init__", - "msecs": 720.2532291412354, + "msecs": 223.0, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16207.820892333984, + "relativeCreated": 16127.55799293518, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 720.4957008361816, + "msecs": 224.0, "msg": "Removing Callback for a specific Data- and Service-ID", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16208.06336402893, + "relativeCreated": 16127.758979797363, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00024247169494628906 + "time_consumption": 0.0002009868621826172 }, { "args": [], - "asctime": "2021-02-28 19:00:07,922", - "created": 1614535207.9225616, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,426", + "created": 1742744832.4262092, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", @@ -198032,26 +49720,25 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:07,720", - "created": 1614535207.7209125, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,224", + "created": 1742744832.2244868, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 720.9124565124512, + "msecs": 224.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16208.4801197052, + "relativeCreated": 16128.17358970642, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -198059,9 +49746,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:07,722", - "created": 1614535207.7220984, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,226", + "created": 1742744832.226375, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -198070,25 +49756,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 722.0983505249023, + "msecs": 226.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16209.666013717651, + "relativeCreated": 16130.061864852905, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:07,730", - "created": 1614535207.7306104, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,235", + "created": 1742744832.2352378, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -198097,300 +49782,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 730.6103706359863, + "msecs": 235.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16218.178033828735, + "relativeCreated": 16138.924598693848, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,730", - "created": 1614535207.730957, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 730.95703125, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16218.524694442749, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:07,731", - "created": 1614535207.7311544, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 731.1544418334961, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16218.722105026245, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,731", - "created": 1614535207.7313893, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 731.3892841339111, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16218.95694732666, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,731", - "created": 1614535207.731551, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 731.550931930542, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16219.118595123291, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,731", - "created": 1614535207.7317848, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 731.7848205566406, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16219.35248374939, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,731", - "created": 1614535207.7319372, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 731.9371700286865, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16219.504833221436, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,732", - "created": 1614535207.7321544, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 732.154369354248, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16219.722032546997, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,732", - "created": 1614535207.732303, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 732.3029041290283, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16219.870567321777, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,732", - "created": 1614535207.7324991, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 732.4991226196289, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16220.066785812378, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,732", - "created": 1614535207.7326846, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 732.6846122741699, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16220.252275466919, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:07,732", - "created": 1614535207.7329662, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,236", + "created": 1742744832.2360785, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -198399,25 +49808,24 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 732.9661846160889, + "msecs": 236.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16220.533847808838, + "relativeCreated": 16139.76526260376, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:07,733", - "created": 1614535207.7338893, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,237", + "created": 1742744832.237168, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -198426,98 +49834,16 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 733.8893413543701, + "msecs": 237.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16221.45700454712, + "relativeCreated": 16140.854835510254, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,734", - "created": 1614535207.7341254, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 734.1253757476807, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16221.69303894043, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:07,734", - "created": 1614535207.734286, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 734.2860698699951, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16221.853733062744, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:07,734", - "created": 1614535207.7345557, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 734.555721282959, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16222.123384475708, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ @@ -198527,54 +49853,52 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:07,734", - "created": 1614535207.7349808, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,237", + "created": 1742744832.2379456, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 734.9808216094971, + "msecs": 237.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16222.548484802246, + "relativeCreated": 16141.632318496704, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "prot-server:", "__callback1__" ], - "asctime": "2021-02-28 19:00:07,735", - "created": 1614535207.7351997, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,238", + "created": 1742744832.2382648, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __callback1__ to process received data", "module": "__init__", - "msecs": 735.1996898651123, + "msecs": 238.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16222.767353057861, + "relativeCreated": 16141.951560974121, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ @@ -198584,36 +49908,34 @@ "status: operation not permitted", "34" ], - "asctime": "2021-02-28 19:00:07,735", - "created": 1614535207.735471, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,238", + "created": 1742744832.2386065, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", "module": "__init__", - "msecs": 735.4710102081299, + "msecs": 238.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16223.038673400879, + "relativeCreated": 16142.293214797974, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53" ], - "asctime": "2021-02-28 19:00:07,736", - "created": 1614535207.7366076, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,239", + "created": 1742744832.2395139, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -198622,25 +49944,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53", "module": "__init__", - "msecs": 736.607551574707, + "msecs": 239.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16224.175214767456, + "relativeCreated": 16143.200635910034, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53" ], - "asctime": "2021-02-28 19:00:07,745", - "created": 1614535207.7452352, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,248", + "created": 1742744832.2481246, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -198649,300 +49970,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 34 7d 53", "module": "__init__", - "msecs": 745.2352046966553, + "msecs": 248.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16232.802867889404, + "relativeCreated": 16151.811361312866, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,745", - "created": 1614535207.7455916, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 745.5916404724121, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16233.159303665161, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:07,745", - "created": 1614535207.745835, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 745.8350658416748, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16233.402729034424, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,746", - "created": 1614535207.7460742, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 746.0741996765137, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16233.641862869263, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,746", - "created": 1614535207.7462687, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 746.2687492370605, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16233.83641242981, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,746", - "created": 1614535207.7465055, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 746.5054988861084, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16234.073162078857, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,746", - "created": 1614535207.7466571, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 746.657133102417, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16234.224796295166, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,746", - "created": 1614535207.746884, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 746.8841075897217, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16234.45177078247, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,747", - "created": 1614535207.7470338, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 747.0338344573975, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16234.601497650146, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,747", - "created": 1614535207.7472324, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 747.2324371337891, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16234.800100326538, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,747", - "created": 1614535207.7473798, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 747.3797798156738, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16234.947443008423, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-server:", "(5): 62 51 ca 3a 3e" ], - "asctime": "2021-02-28 19:00:07,747", - "created": 1614535207.7476618, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,248", + "created": 1742744832.2488728, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -198951,25 +49996,24 @@ "lineno": 284, "message": "comm-server: TX -> (5): 62 51 ca 3a 3e", "module": "__init__", - "msecs": 747.661828994751, + "msecs": 248.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16235.2294921875, + "relativeCreated": 16152.559518814087, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-client:", "(5): 62 51 ca 3a 3e" ], - "asctime": "2021-02-28 19:00:07,748", - "created": 1614535207.7486548, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,249", + "created": 1742744832.24993, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -198978,98 +50022,16 @@ "lineno": 414, "message": "comm-client: RX <- (5): 62 51 ca 3a 3e", "module": "__init__", - "msecs": 748.654842376709, + "msecs": 249.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16236.222505569458, + "relativeCreated": 16153.616666793823, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,748", - "created": 1614535207.7489543, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 748.9542961120605, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16236.52195930481, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:07,749", - "created": 1614535207.7491639, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 749.1638660430908, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16236.73152923584, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca" - ], - "asctime": "2021-02-28 19:00:07,749", - "created": 1614535207.7494054, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 34 7d 53 62 51 ca", - "module": "stp", - "msecs": 749.4053840637207, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16236.97304725647, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ @@ -199079,81 +50041,78 @@ "status: operation not permitted", "34" ], - "asctime": "2021-02-28 19:00:07,749", - "created": 1614535207.749824, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,250", + "created": 1742744832.2506258, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"34\"", "module": "__init__", - "msecs": 749.824047088623, + "msecs": 250.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16237.391710281372, + "relativeCreated": 16154.31261062622, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:07,750", - "created": 1614535207.7500436, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,250", + "created": 1742744832.2508967, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 750.0436305999756, + "msecs": 250.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16237.611293792725, + "relativeCreated": 16154.58345413208, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" } ], - "msecs": 922.5616455078125, + "msecs": 426.0, "msg": "Transfering data", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16410.12930870056, + "relativeCreated": 16329.895973205566, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.17251801490783691 + "time_consumption": 0.17531251907348633 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:07,924", - "created": 1614535207.924196, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,427", + "created": 1742744832.4273276, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", "module": "test", "moduleLogger": [ @@ -199163,9 +50122,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:07,923", - "created": 1614535207.9234538, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,426", + "created": 1742744832.4268496, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -199174,72 +50132,71 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 923.4538078308105, + "msecs": 426.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16411.02147102356, + "relativeCreated": 16330.536365509033, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message stored inside callback", + "=", "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:07,923", - "created": 1614535207.9238238, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,427", + "created": 1742744832.4271102, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 923.8238334655762, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 427.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16411.391496658325, + "relativeCreated": 16330.796957015991, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 924.1960048675537, + "msecs": 427.0, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16411.763668060303, + "relativeCreated": 16331.014394760132, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00037217140197753906 + "time_consumption": 0.000217437744140625 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34}", "" ], - "asctime": "2021-02-28 19:00:07,925", - "created": 1614535207.9253347, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,428", + "created": 1742744832.4280815, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34} and Type is ).", "module": "test", "moduleLogger": [ @@ -199249,9 +50206,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34}", "" ], - "asctime": "2021-02-28 19:00:07,924", - "created": 1614535207.924685, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,427", + "created": 1742744832.427654, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -199260,63 +50216,62 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 6, 'data': 34} ()", "module": "test", - "msecs": 924.685001373291, + "msecs": 427.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16412.25266456604, + "relativeCreated": 16331.340789794922, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message received by client", + "=", "{'data': 34, 'data_id': 0, 'service_id': 11, 'status': 6}", "" ], - "asctime": "2021-02-28 19:00:07,925", - "created": 1614535207.925014, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,427", + "created": 1742744832.4278543, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 34, 'data_id': 0, 'service_id': 11, 'status': 6} ()", "module": "test", - "msecs": 925.0140190124512, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 427.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16412.5816822052, + "relativeCreated": 16331.541061401367, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 925.3346920013428, + "msecs": 428.0, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16412.90235519409, + "relativeCreated": 16331.768274307251, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00032067298889160156 + "time_consumption": 0.00022721290588378906 }, { "args": [], - "asctime": "2021-02-28 19:00:07,926", - "created": 1614535207.9262257, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,428", + "created": 1742744832.4286704, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", @@ -199333,9 +50288,8 @@ "10", "None" ], - "asctime": "2021-02-28 19:00:07,925", - "created": 1614535207.9259088, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,428", + "created": 1742744832.4284642, "exc_text": null, "filename": "__init__.py", "funcName": "add", @@ -199344,35 +50298,34 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback1__' for service_id (10) and data_id (None)!", "module": "__init__", - "msecs": 925.9088039398193, + "msecs": 428.0, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16413.47646713257, + "relativeCreated": 16332.150936126709, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 926.2256622314453, + "msecs": 428.0, "msg": "Removing Callback for a specific Service-ID and all Data-IDs", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16413.793325424194, + "relativeCreated": 16332.357168197632, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00031685829162597656 + "time_consumption": 0.00020623207092285156 }, { "args": [], - "asctime": "2021-02-28 19:00:08,128", - "created": 1614535208.128823, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,630", + "created": 1742744832.6308687, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", @@ -199390,26 +50343,25 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:07,926", - "created": 1614535207.9268599, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,429", + "created": 1742744832.4290862, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 926.8598556518555, + "msecs": 429.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16414.427518844604, + "relativeCreated": 16332.772970199585, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -199417,9 +50369,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:07,928", - "created": 1614535207.9282806, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,430", + "created": 1742744832.430368, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -199428,25 +50379,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 928.2805919647217, + "msecs": 430.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16415.84825515747, + "relativeCreated": 16334.054708480835, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:07,936", - "created": 1614535207.9369628, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,438", + "created": 1742744832.4385364, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -199455,300 +50405,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 936.9628429412842, + "msecs": 438.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16424.530506134033, + "relativeCreated": 16342.223167419434, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,937", - "created": 1614535207.937356, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 937.3559951782227, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16424.92365837097, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:07,937", - "created": 1614535207.9377186, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 937.7186298370361, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16425.286293029785, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,938", - "created": 1614535207.9380076, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 938.0075931549072, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16425.575256347656, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,938", - "created": 1614535207.9382002, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 938.2002353668213, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16425.76789855957, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,938", - "created": 1614535207.9385068, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 938.5068416595459, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16426.074504852295, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,938", - "created": 1614535207.9386823, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 938.6823177337646, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16426.249980926514, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,938", - "created": 1614535207.9389317, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 938.9317035675049, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16426.499366760254, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,939", - "created": 1614535207.9391177, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 939.1176700592041, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16426.685333251953, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,939", - "created": 1614535207.939348, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 939.3479824066162, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16426.915645599365, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,939", - "created": 1614535207.9395156, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 939.5155906677246, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16427.083253860474, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:07,939", - "created": 1614535207.9398525, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,438", + "created": 1742744832.4388587, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -199757,25 +50431,24 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 939.8524761199951, + "msecs": 438.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16427.420139312744, + "relativeCreated": 16342.545509338379, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:07,940", - "created": 1614535207.940895, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,439", + "created": 1742744832.4397047, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -199784,98 +50457,16 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 940.8950805664062, + "msecs": 439.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16428.462743759155, + "relativeCreated": 16343.391418457031, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,941", - "created": 1614535207.9412382, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 941.2381649017334, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16428.805828094482, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:07,941", - "created": 1614535207.9414666, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 941.4665699005127, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16429.03423309326, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:07,941", - "created": 1614535207.941823, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 941.8230056762695, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16429.39066886902, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ @@ -199885,54 +50476,52 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:07,942", - "created": 1614535207.942314, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,440", + "created": 1742744832.4400299, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 942.3139095306396, + "msecs": 440.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16429.88157272339, + "relativeCreated": 16343.716621398926, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "prot-server:", "__callback2__" ], - "asctime": "2021-02-28 19:00:07,942", - "created": 1614535207.9425678, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,440", + "created": 1742744832.4401486, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __callback2__ to process received data", "module": "__init__", - "msecs": 942.5678253173828, + "msecs": 440.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16430.135488510132, + "relativeCreated": 16343.835353851318, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ @@ -199942,36 +50531,34 @@ "status: operation not permitted", "35" ], - "asctime": "2021-02-28 19:00:07,943", - "created": 1614535207.943408, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,440", + "created": 1742744832.4403024, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", "module": "__init__", - "msecs": 943.4080123901367, + "msecs": 440.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16430.975675582886, + "relativeCreated": 16343.989133834839, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a" ], - "asctime": "2021-02-28 19:00:07,944", - "created": 1614535207.944407, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,440", + "created": 1742744832.4407191, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -199980,25 +50567,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a", "module": "__init__", - "msecs": 944.4069862365723, + "msecs": 440.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16431.97464942932, + "relativeCreated": 16344.405889511108, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a" ], - "asctime": "2021-02-28 19:00:07,952", - "created": 1614535207.9529965, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,449", + "created": 1742744832.449127, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -200007,300 +50593,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 36 2c 20 22 64 61 74 61 22 3a 3d 20 33 35 7d 4a", "module": "__init__", - "msecs": 952.9964923858643, + "msecs": 449.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16440.564155578613, + "relativeCreated": 16352.813720703125, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,953", - "created": 1614535207.9533525, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 953.3524513244629, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16440.920114517212, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:07,953", - "created": 1614535207.9535503, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 953.5503387451172, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16441.118001937866, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,953", - "created": 1614535207.9538553, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 953.8552761077881, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16441.422939300537, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,954", - "created": 1614535207.954024, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 954.024076461792, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16441.59173965454, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,954", - "created": 1614535207.9542732, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 954.2732238769531, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16441.840887069702, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,954", - "created": 1614535207.9544265, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 954.4265270233154, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16441.994190216064, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,954", - "created": 1614535207.9546404, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 954.6403884887695, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16442.20805168152, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,954", - "created": 1614535207.9547887, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 954.7886848449707, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16442.35634803772, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,954", - "created": 1614535207.9549844, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 954.9844264984131, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16442.552089691162, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:07,955", - "created": 1614535207.955131, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 955.1310539245605, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16442.69871711731, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-server:", "(5): 79 60 8b 3a 3e" ], - "asctime": "2021-02-28 19:00:07,955", - "created": 1614535207.955413, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,449", + "created": 1742744832.4496753, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -200309,25 +50619,24 @@ "lineno": 284, "message": "comm-server: TX -> (5): 79 60 8b 3a 3e", "module": "__init__", - "msecs": 955.4131031036377, + "msecs": 449.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16442.980766296387, + "relativeCreated": 16353.362083435059, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-client:", "(5): 79 60 8b 3a 3e" ], - "asctime": "2021-02-28 19:00:07,956", - "created": 1614535207.9564285, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,450", + "created": 1742744832.4506273, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -200336,98 +50645,16 @@ "lineno": 414, "message": "comm-client: RX <- (5): 79 60 8b 3a 3e", "module": "__init__", - "msecs": 956.4285278320312, + "msecs": 450.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16443.99619102478, + "relativeCreated": 16354.314088821411, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:07,956", - "created": 1614535207.956742, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 956.7420482635498, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16444.3097114563, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:07,956", - "created": 1614535207.956939, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 956.9389820098877, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16444.506645202637, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b" - ], - "asctime": "2021-02-28 19:00:07,957", - "created": 1614535207.9572456, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 36 2c 20 22 64 61 74 61 22 3a 20 33 35 7d 4a 79 60 8b", - "module": "stp", - "msecs": 957.2455883026123, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16444.81325149536, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ @@ -200437,81 +50664,78 @@ "status: operation not permitted", "35" ], - "asctime": "2021-02-28 19:00:07,957", - "created": 1614535207.957715, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,451", + "created": 1742744832.4511309, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "WARNING", "levelno": 30, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: read data response, data_id: 0, status: operation not permitted, data: \"35\"", "module": "__init__", - "msecs": 957.7150344848633, + "msecs": 451.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16445.282697677612, + "relativeCreated": 16354.817628860474, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:07,957", - "created": 1614535207.9579723, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,451", + "created": 1742744832.4513245, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 957.9722881317139, + "msecs": 451.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16445.539951324463, + "relativeCreated": 16355.011224746704, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" } ], - "msecs": 128.82304191589355, + "msecs": 630.0, "msg": "Transfering data", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16616.390705108643, + "relativeCreated": 16534.555435180664, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.1708507537841797 + "time_consumption": 0.17954421043395996 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:08,129", - "created": 1614535208.1298957, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,632", + "created": 1742744832.6320457, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", "module": "test", "moduleLogger": [ @@ -200521,9 +50745,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:08,129", - "created": 1614535208.1294248, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,631", + "created": 1742744832.631544, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -200532,72 +50755,71 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 129.4248104095459, + "msecs": 631.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16616.992473602295, + "relativeCreated": 16535.23087501526, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message stored inside callback", + "=", "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:08,129", - "created": 1614535208.1296866, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,631", + "created": 1742744832.631805, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 129.6865940093994, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 631.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16617.25425720215, + "relativeCreated": 16535.491704940796, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 129.89568710327148, + "msecs": 632.0, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16617.46335029602, + "relativeCreated": 16535.73250770569, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0002090930938720703 + "time_consumption": 0.00024080276489257812 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35}", "" ], - "asctime": "2021-02-28 19:00:08,130", - "created": 1614535208.1305764, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,632", + "created": 1742744832.6327624, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35} and Type is ).", "module": "test", "moduleLogger": [ @@ -200607,9 +50829,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35}", "" ], - "asctime": "2021-02-28 19:00:08,130", - "created": 1614535208.130211, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,632", + "created": 1742744832.6323733, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -200618,63 +50839,62 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 6, 'data': 35} ()", "module": "test", - "msecs": 130.21111488342285, + "msecs": 632.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16617.778778076172, + "relativeCreated": 16536.060094833374, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message received by client", + "=", "{'data': 35, 'data_id': 0, 'service_id': 11, 'status': 6}", "" ], - "asctime": "2021-02-28 19:00:08,130", - "created": 1614535208.1303933, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,632", + "created": 1742744832.6325736, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 35, 'data_id': 0, 'service_id': 11, 'status': 6} ()", "module": "test", - "msecs": 130.39326667785645, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 632.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16617.960929870605, + "relativeCreated": 16536.26036643982, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 130.57637214660645, + "msecs": 632.0, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16618.144035339355, + "relativeCreated": 16536.449193954468, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00018310546875 + "time_consumption": 0.0001888275146484375 }, { "args": [], - "asctime": "2021-02-28 19:00:08,131", - "created": 1614535208.131072, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,633", + "created": 1742744832.6333423, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", @@ -200691,9 +50911,8 @@ "None", "0" ], - "asctime": "2021-02-28 19:00:08,130", - "created": 1614535208.1308937, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,633", + "created": 1742744832.6331263, "exc_text": null, "filename": "__init__.py", "funcName": "add", @@ -200702,35 +50921,34 @@ "lineno": 164, "message": "prot-server: Deleting existing callback '__callback2__' for service_id (None) and data_id (0)!", "module": "__init__", - "msecs": 130.89370727539062, + "msecs": 633.0, "msg": "%s Deleting existing callback %s for service_id (%s) and data_id (%s)!", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16618.46137046814, + "relativeCreated": 16536.813020706177, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 131.0720443725586, + "msecs": 633.0, "msg": "Removing Callback for a specific Data-ID and all Serice-IDs", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16618.639707565308, + "relativeCreated": 16537.029027938843, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00017833709716796875 + "time_consumption": 0.00021600723266601562 }, { "args": [], - "asctime": "2021-02-28 19:00:08,333", - "created": 1614535208.333097, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,835", + "created": 1742744832.835314, "exc_text": null, "filename": "test_callbacks.py", "funcName": "choice_callback", @@ -200748,26 +50966,25 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:08,131", - "created": 1614535208.1314507, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,633", + "created": 1742744832.633763, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: TX -> service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 131.45065307617188, + "msecs": 633.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16619.01831626892, + "relativeCreated": 16537.449836730957, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { @@ -200775,9 +50992,8 @@ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:08,132", - "created": 1614535208.1326683, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,635", + "created": 1742744832.635618, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -200786,25 +51002,24 @@ "lineno": 284, "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 132.66825675964355, + "msecs": 635.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16620.235919952393, + "relativeCreated": 16539.304733276367, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8" ], - "asctime": "2021-02-28 19:00:08,141", - "created": 1614535208.1412716, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,644", + "created": 1742744832.6444461, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -200813,300 +51028,24 @@ "lineno": 414, "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 31 7d b8", "module": "__init__", - "msecs": 141.27159118652344, + "msecs": 644.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16628.839254379272, + "relativeCreated": 16548.13289642334, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,141", - "created": 1614535208.1416247, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 141.62468910217285, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16629.192352294922, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:08,141", - "created": 1614535208.1418748, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 141.8747901916504, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16629.4424533844, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,142", - "created": 1614535208.1421146, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 142.11463928222656, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16629.682302474976, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,142", - "created": 1614535208.1422803, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 142.28034019470215, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16629.84800338745, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,142", - "created": 1614535208.1425164, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 142.5163745880127, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16630.08403778076, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,142", - "created": 1614535208.1426988, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 142.6987648010254, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16630.266427993774, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,142", - "created": 1614535208.1429214, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 142.92144775390625, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16630.489110946655, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,143", - "created": 1614535208.1430857, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 143.08571815490723, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16630.653381347656, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,143", - "created": 1614535208.1432893, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 143.28932762145996, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16630.85699081421, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,143", - "created": 1614535208.1434546, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 143.45455169677734, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16631.022214889526, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-client:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:08,143", - "created": 1614535208.1437325, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,645", + "created": 1742744832.645293, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -201115,25 +51054,24 @@ "lineno": 284, "message": "comm-client: TX -> (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 143.73254776000977, + "msecs": 645.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16631.30021095276, + "relativeCreated": 16548.97975921631, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(5): 5b f5 78 3a 3e" ], - "asctime": "2021-02-28 19:00:08,144", - "created": 1614535208.1447113, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,646", + "created": 1742744832.6463141, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -201142,98 +51080,16 @@ "lineno": 414, "message": "comm-server: RX <- (5): 5b f5 78 3a 3e", "module": "__init__", - "msecs": 144.71125602722168, + "msecs": 646.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16632.27891921997, + "relativeCreated": 16550.0009059906, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,144", - "created": 1614535208.1449683, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 144.96827125549316, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16632.535934448242, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:08,145", - "created": 1614535208.1451416, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 145.1416015625, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16632.70926475525, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" - }, - { - "args": [ - "STP:", - "(61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78" - ], - "asctime": "2021-02-28 19:00:08,145", - "created": 1614535208.1453831, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 31 7d b8 5b f5 78", - "module": "stp", - "msecs": 145.38311958312988, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16632.95078277588, - "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ @@ -201243,54 +51099,52 @@ "status: okay", "31" ], - "asctime": "2021-02-28 19:00:08,145", - "created": 1614535208.145792, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,647", + "created": 1742744832.647102, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: RX <- service: read data request, data_id: 0, status: okay, data: \"31\"", "module": "__init__", - "msecs": 145.79200744628906, + "msecs": 647.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16633.359670639038, + "relativeCreated": 16550.78887939453, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "prot-server:", "__callback3__" ], - "asctime": "2021-02-28 19:00:08,145", - "created": 1614535208.1459947, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,647", + "created": 1742744832.647387, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 490, + "lineno": 488, "message": "prot-server: Executing callback __callback3__ to process received data", "module": "__init__", - "msecs": 145.9946632385254, + "msecs": 647.0, "msg": "%s Executing callback %s to process received data", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16633.562326431274, + "relativeCreated": 16551.073789596558, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ @@ -201300,36 +51154,34 @@ "status: okay", "36" ], - "asctime": "2021-02-28 19:00:08,146", - "created": 1614535208.1462479, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,647", + "created": 1742744832.6477237, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-server: TX -> service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 146.24786376953125, + "msecs": 647.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16633.81552696228, + "relativeCreated": 16551.41043663025, "stack_info": null, - "thread": 140379127019264, - "threadName": "Thread-27" + "thread": 140629669553856, + "threadName": "Thread-27 (_start)" }, { "args": [ "comm-server:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99" ], - "asctime": "2021-02-28 19:00:08,147", - "created": 1614535208.1470308, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,648", + "created": 1742744832.6486547, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -201338,25 +51190,24 @@ "lineno": 284, "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99", "module": "__init__", - "msecs": 147.03083038330078, + "msecs": 648.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16634.59849357605, + "relativeCreated": 16552.34146118164, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-client:", "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99" ], - "asctime": "2021-02-28 19:00:08,155", - "created": 1614535208.1554675, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,657", + "created": 1742744832.6573575, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -201365,300 +51216,24 @@ "lineno": 414, "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 33 36 7d 99", "module": "__init__", - "msecs": 155.46751022338867, + "msecs": 657.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16643.035173416138, + "relativeCreated": 16561.044216156006, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,155", - "created": 1614535208.1558027, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 101, - "message": "STP: data sync (3a) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "module": "stp", - "msecs": 155.80272674560547, - "msg": "%s data sync (%02x) received => changing state STP_STATE_IDLE -> STP_STATE_ESCAPE_1", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16643.370389938354, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 60 - ], - "asctime": "2021-02-28 19:00:08,155", - "created": 1614535208.1559908, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 106, - "message": "STP: start pattern (3a 3c) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 155.9908390045166, - "msg": "%s start pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_1 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16643.558502197266, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,156", - "created": 1614535208.1561983, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 156.19826316833496, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16643.765926361084, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,156", - "created": 1614535208.1563432, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 156.3432216644287, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16643.910884857178, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,156", - "created": 1614535208.1565483, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 156.54826164245605, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16644.115924835205, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,156", - "created": 1614535208.1566777, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 156.6777229309082, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16644.245386123657, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,156", - "created": 1614535208.1568625, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 156.8624973297119, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16644.43016052246, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,156", - "created": 1614535208.1569884, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 156.98838233947754, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16644.556045532227, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,157", - "created": 1614535208.1571586, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 157.15861320495605, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16644.726276397705, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 61 - ], - "asctime": "2021-02-28 19:00:08,157", - "created": 1614535208.1572967, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 132, - "message": "STP: store sync pattern (3a 3d) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "module": "stp", - "msecs": 157.29665756225586, - "msg": "%s store sync pattern (%02x %02x) received => changing state STP_STATE_ESCAPE_2 -> STP_STATE_STORE_DATA", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16644.864320755005, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-server:", "(5): 96 78 fe 3a 3e" ], - "asctime": "2021-02-28 19:00:08,157", - "created": 1614535208.1575453, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,658", + "created": 1742744832.6582565, "exc_text": null, "filename": "__init__.py", "funcName": "__tx__", @@ -201667,25 +51242,24 @@ "lineno": 284, "message": "comm-server: TX -> (5): 96 78 fe 3a 3e", "module": "__init__", - "msecs": 157.5453281402588, + "msecs": 658.0, "msg": "%s TX -> %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16645.112991333008, + "relativeCreated": 16561.943292617798, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "comm-client:", "(5): 96 78 fe 3a 3e" ], - "asctime": "2021-02-28 19:00:08,158", - "created": 1614535208.1585307, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,659", + "created": 1742744832.6593544, "exc_text": null, "filename": "__init__.py", "funcName": "__rx__", @@ -201694,98 +51268,16 @@ "lineno": 414, "message": "comm-client: RX <- (5): 96 78 fe 3a 3e", "module": "__init__", - "msecs": 158.53071212768555, + "msecs": 659.0, "msg": "%s RX <- %s", - "name": "root.helpers.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/helpers/__init__.py", - "process": 66124, + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16646.098375320435, + "relativeCreated": 16563.04121017456, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58 - ], - "asctime": "2021-02-28 19:00:08,158", - "created": 1614535208.1587899, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 117, - "message": "STP: data sync (3a) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "module": "stp", - "msecs": 158.78987312316895, - "msg": "%s data sync (%02x) received => changing state STP_STATE_STORE_DATA -> STP_STATE_ESCAPE_2", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16646.357536315918, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - 58, - 62 - ], - "asctime": "2021-02-28 19:00:08,159", - "created": 1614535208.1590133, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "DEBUG", - "levelno": 10, - "lineno": 127, - "message": "STP: end pattern (3a 3e) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "module": "stp", - "msecs": 159.0132713317871, - "msg": "%s end pattern (%02x %02x) received => storing message and changing state STP_STATE_ESCAPE_2 -> STP_STATE_IDLE", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16646.580934524536, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" - }, - { - "args": [ - "STP:", - "(61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe" - ], - "asctime": "2021-02-28 19:00:08,159", - "created": 1614535208.159259, - "exc_info": null, - "exc_text": null, - "filename": "stp.py", - "funcName": "process", - "levelname": "INFO", - "levelno": 20, - "lineno": 148, - "message": "STP: message identified - (61): 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 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 33 36 7d 99 96 78 fe", - "module": "stp", - "msecs": 159.25908088684082, - "msg": "%s message identified - %s", - "name": "root.stringtools.stp", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/stringtools/stp.py", - "process": 66124, - "processName": "MainProcess", - "relativeCreated": 16646.82674407959, - "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ @@ -201795,81 +51287,78 @@ "status: okay", "36" ], - "asctime": "2021-02-28 19:00:08,159", - "created": 1614535208.1596403, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,660", + "created": 1742744832.6601152, "exc_text": null, "filename": "__init__.py", "funcName": "__log_msg__", "levelname": "INFO", "levelno": 20, - "lineno": 450, + "lineno": 445, "message": "prot-client: RX <- service: read data response, data_id: 0, status: okay, data: \"36\"", "module": "__init__", - "msecs": 159.64031219482422, + "msecs": 660.0, "msg": "%s %s %s, %s, data: \"%s\"", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16647.207975387573, + "relativeCreated": 16563.802003860474, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" }, { "args": [ "prot-client:" ], - "asctime": "2021-02-28 19:00:08,159", - "created": 1614535208.159865, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,660", + "created": 1742744832.6604311, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 397, + "lineno": 392, "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 159.8649024963379, + "msecs": 660.0, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "root.socket_protocol.all_others", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", - "process": 66124, + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16647.432565689087, + "relativeCreated": 16564.117908477783, "stack_info": null, - "thread": 140379118626560, - "threadName": "Thread-28" + "thread": 140629661161152, + "threadName": "Thread-28 (_start)" } ], - "msecs": 333.096981048584, + "msecs": 835.0, "msg": "Transfering data", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_callbacks.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16820.664644241333, + "relativeCreated": 16739.00079727173, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.1732320785522461 + "time_consumption": 0.1748828887939453 }, { "args": [ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:08,334", - "created": 1614535208.334166, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,836", + "created": 1742744832.8364272, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message stored inside callback is correct (Content {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} and Type is ).", "module": "test", "moduleLogger": [ @@ -201879,9 +51368,8 @@ "{'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31}", "" ], - "asctime": "2021-02-28 19:00:08,333", - "created": 1614535208.3337352, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,835", + "created": 1742744832.8359575, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -201890,72 +51378,71 @@ "lineno": 22, "message": "Result (Message stored inside callback): {'data_id': 0, 'service_id': 10, 'status': 0, 'data': 31} ()", "module": "test", - "msecs": 333.73522758483887, + "msecs": 835.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16821.302890777588, + "relativeCreated": 16739.644289016724, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message stored inside callback", + "=", "{'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:08,333", - "created": 1614535208.3339717, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,836", + "created": 1742744832.8362138, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message stored inside callback): result = {'data': 31, 'data_id': 0, 'service_id': 10, 'status': 0} ()", "module": "test", - "msecs": 333.9717388153076, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 836.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16821.539402008057, + "relativeCreated": 16739.900588989258, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 334.1660499572754, + "msecs": 836.0, "msg": "Message stored inside callback is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16821.733713150024, + "relativeCreated": 16740.113973617554, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.00019431114196777344 + "time_consumption": 0.00021338462829589844 }, { "args": [ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36}", "" ], - "asctime": "2021-02-28 19:00:08,334", - "created": 1614535208.3347986, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,837", + "created": 1742744832.8371375, "exc_text": null, "filename": "test.py", "funcName": "equivalency_chk", "levelname": "INFO", "levelno": 20, - "lineno": 144, + "lineno": 184, "message": "Message received by client is correct (Content {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36} and Type is ).", "module": "test", "moduleLogger": [ @@ -201965,9 +51452,8 @@ "{'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36}", "" ], - "asctime": "2021-02-28 19:00:08,334", - "created": 1614535208.334455, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,836", + "created": 1742744832.8367484, "exc_text": null, "filename": "test.py", "funcName": "__report_result__", @@ -201976,95 +51462,11769 @@ "lineno": 22, "message": "Result (Message received by client): {'data_id': 0, 'service_id': 11, 'status': 0, 'data': 36} ()", "module": "test", - "msecs": 334.4550132751465, + "msecs": 836.0, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16822.022676467896, + "relativeCreated": 16740.435123443604, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" }, { "args": [ "Message received by client", + "=", "{'data': 36, 'data_id': 0, 'service_id': 11, 'status': 0}", "" ], - "asctime": "2021-02-28 19:00:08,334", - "created": 1614535208.3346314, - "exc_info": null, + "asctime": "2025-03-23 16:47:12,836", + "created": 1742744832.8369498, "exc_text": null, "filename": "test.py", - "funcName": "__report_expectation_equivalency__", + "funcName": "__report_expectation__", "levelname": "DEBUG", "levelno": 10, "lineno": 26, "message": "Expectation (Message received by client): result = {'data': 36, 'data_id': 0, 'service_id': 11, 'status': 0} ()", "module": "test", - "msecs": 334.63144302368164, - "msg": "Expectation (%s): result = %s (%s)", + "msecs": 836.0, + "msg": "Expectation (%s): result %s %s (%s)", "name": "__unittest__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16822.19910621643, + "relativeCreated": 16740.636587142944, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread" } ], - "msecs": 334.79857444763184, + "msecs": 837.0, "msg": "Message received by client is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/usr/data/dirk/prj/unittest/socket_protocol/unittest/src/unittest/test.py", - "process": 66124, + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, "processName": "MainProcess", - "relativeCreated": 16822.36623764038, + "relativeCreated": 16740.824222564697, "stack_info": null, - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 0.0001671314239501953 + "time_consumption": 0.0001876354217529297 } ], - "thread": 140381150107456, + "thread": 140631409799232, "threadName": "MainThread", - "time_consumption": 1.1765193939208984, - "time_finished": "2021-02-28 19:00:08,334", - "time_start": "2021-02-28 19:00:07,158" + "time_consumption": 1.1738717555999756, + "time_finished": "2025-03-23 16:47:12,837", + "time_start": "2025-03-23 16:47:11,663" + }, + "REQ-0020": { + "args": null, + "asctime": "2025-03-23 16:47:12,838", + "created": 1742744832.8380897, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0020", + "module": "__init__", + "moduleLogger": [], + "msecs": 838.0, + "msg": "REQ-0020", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16741.77646636963, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:12,850", + "created": 1742744832.8509364, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:12,841", + "created": 1742744832.841068, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 841.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16744.754791259766, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:12,842", + "created": 1742744832.8423512, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 842.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16746.03796005249, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:12,842", + "created": 1742744832.8426514, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 842.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16746.33812904358, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:12,843", + "created": 1742744832.8430808, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 843.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16746.76752090454, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:12,843", + "created": 1742744832.8433268, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 843.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16747.013568878174, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:12,843", + "created": 1742744832.8436222, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 843.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16747.30896949768, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:12,843", + "created": 1742744832.8438046, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 843.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16747.491359710693, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:12,843", + "created": 1742744832.8439736, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 843.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16747.660398483276, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:12,844", + "created": 1742744832.8441372, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 844.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16747.82395362854, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:12,844", + "created": 1742744832.8443177, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 844.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16748.00443649292, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:12,844", + "created": 1742744832.8444993, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 844.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16748.186111450195, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:12,844", + "created": 1742744832.8446758, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 844.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16748.36254119873, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:12,844", + "created": 1742744832.8448482, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 844.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16748.53491783142, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:12,845", + "created": 1742744832.8450036, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 845.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16748.690366744995, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:12,845", + "created": 1742744832.8451717, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 845.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16748.85845184326, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:12,845", + "created": 1742744832.845357, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 845.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16749.043703079224, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:12,845", + "created": 1742744832.8455434, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 845.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16749.23014640808, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:12,845", + "created": 1742744832.845719, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 845.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16749.40586090088, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:12,845", + "created": 1742744832.8458955, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 845.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16749.582290649414, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:12,846", + "created": 1742744832.8460891, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 846.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16749.775886535645, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:12,846", + "created": 1742744832.8462613, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 846.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16749.948024749756, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:12,846", + "created": 1742744832.8464286, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 846.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16750.115394592285, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:12,846", + "created": 1742744832.8465898, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 846.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16750.276565551758, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:12,846", + "created": 1742744832.8468835, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 846.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16750.57029724121, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:12,847", + "created": 1742744832.8470595, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 847.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16750.746250152588, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:12,847", + "created": 1742744832.847278, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 847.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16750.964879989624, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:12,847", + "created": 1742744832.8474493, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 847.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16751.13606452942, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:12,847", + "created": 1742744832.8476236, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 847.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16751.310348510742, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:12,847", + "created": 1742744832.8477864, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 847.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16751.47318840027, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:12,847", + "created": 1742744832.8479657, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 847.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16751.652479171753, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:12,848", + "created": 1742744832.8481467, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 848.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16751.83343887329, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:12,848", + "created": 1742744832.8484063, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 848.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16752.093076705933, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:12,848", + "created": 1742744832.848737, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 848.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16752.423763275146, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:12,849", + "created": 1742744832.8490076, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 849.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16752.694368362427, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:12,849", + "created": 1742744832.8492706, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 849.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16752.957344055176, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:12,849", + "created": 1742744832.8494732, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 849.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16753.159999847412, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:12,849", + "created": 1742744832.8496468, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 849.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16753.333568572998, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:12,849", + "created": 1742744832.8498437, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 849.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16753.530502319336, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:12,850", + "created": 1742744832.8500407, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 850.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16753.727436065674, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:12,850", + "created": 1742744832.8502715, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 850.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16753.958225250244, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:12,850", + "created": 1742744832.8504357, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 850.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16754.122495651245, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:12,850", + "created": 1742744832.8505995, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 850.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16754.286289215088, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:12,850", + "created": 1742744832.8507683, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 850.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16754.45508956909, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 850.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16754.62317466736, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00016808509826660156 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:13,197", + "created": 1742744833.197165, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:12,851", + "created": 1742744832.8515804, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 851.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16755.26714324951, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:12,851", + "created": 1742744832.8519175, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 851.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16755.60426712036, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:12,852", + "created": 1742744832.8521485, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 852.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16755.83529472351, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:12,852", + "created": 1742744832.8524463, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 852.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16756.13307952881, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:12,853", + "created": 1742744832.853099, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 853.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16756.78586959839, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:12,853", + "created": 1742744832.8532903, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 853.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16756.977081298828, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:12,853", + "created": 1742744832.8534691, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 853.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16757.155895233154, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:12,854", + "created": 1742744832.8542054, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 854.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16757.89213180542, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:12,862", + "created": 1742744832.8625598, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 862.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16766.246557235718, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:12,862", + "created": 1742744832.8627994, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 862.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16766.486167907715, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:12,863", + "created": 1742744832.8637328, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 863.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16767.419576644897, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:12,863", + "created": 1742744832.8639352, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 863.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16767.621994018555, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:12,864", + "created": 1742744832.8640044, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 864.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16767.691135406494, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:12,864", + "created": 1742744832.864088, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 864.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16767.77482032776, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:12,864", + "created": 1742744832.864342, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 864.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16768.028736114502, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:12,872", + "created": 1742744832.8726292, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 872.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16776.315927505493, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:12,872", + "created": 1742744832.8728976, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 872.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16776.58438682556, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:12,873", + "created": 1742744832.8738663, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 873.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16777.55308151245, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:12,874", + "created": 1742744832.8741217, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 874.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16777.80842781067, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:12,874", + "created": 1742744832.8742092, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 874.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 16777.8959274292, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + } + ], + "msecs": 197.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17100.8517742157, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.322955846786499 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,198", + "created": 1742744833.198289, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,197", + "created": 1742744833.1977959, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): True ()", + "module": "test", + "msecs": 197.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17101.482629776, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,198", + "created": 1742744833.1980298, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = True ()", + "module": "test", + "msecs": 198.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17101.7165184021, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 198.0, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17101.975679397583, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00025916099548339844 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,199", + "created": 1742744833.1990485, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,198", + "created": 1742744833.1986535, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): True ()", + "module": "test", + "msecs": 198.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17102.34022140503, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,198", + "created": 1742744833.1988525, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = True ()", + "module": "test", + "msecs": 198.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17102.53930091858, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 199.0, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17102.7352809906, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00019598007202148438 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,200", + "created": 1742744833.2004838, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:13,199", + "created": 1742744833.199335, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 199.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17103.02186012268, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:13,199", + "created": 1742744833.199553, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 199.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17103.23977470398, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:13,199", + "created": 1742744833.1997402, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 199.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17103.426933288574, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:13,199", + "created": 1742744833.199924, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 199.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17103.61075401306, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,200", + "created": 1742744833.2001252, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): False ()", + "module": "test", + "msecs": 200.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17103.811979293823, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,200", + "created": 1742744833.2003055, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = False ()", + "module": "test", + "msecs": 200.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17103.992223739624, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 200.0, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17104.170560836792, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00017833709716796875 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,201", + "created": 1742744833.2011702, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,200", + "created": 1742744833.200802, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): False ()", + "module": "test", + "msecs": 200.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17104.488849639893, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,200", + "created": 1742744833.2009923, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = False ()", + "module": "test", + "msecs": 200.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17104.679107666016, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 201.0, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17104.856967926025, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00017786026000976562 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:13,545", + "created": 1742744833.5455782, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "connection_established", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 19, + "message": "Connecting Server and Client", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:13,201", + "created": 1742744833.2014472, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 201.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17105.13401031494, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:13,201", + "created": 1742744833.2016501, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 201.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17105.336904525757, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:13,201", + "created": 1742744833.2018402, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 201.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17105.5269241333, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,202", + "created": 1742744833.2021706, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 202.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17105.857372283936, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:13,202", + "created": 1742744833.2023923, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 202.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17106.0791015625, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:13,202", + "created": 1742744833.2024531, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 202.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17106.13989830017, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:13,202", + "created": 1742744833.2025096, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 202.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17106.196403503418, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,202", + "created": 1742744833.2027535, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 202.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17106.44030570984, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,210", + "created": 1742744833.210918, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 210.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17114.604711532593, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,211", + "created": 1742744833.2112758, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 211.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17114.962577819824, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,212", + "created": 1742744833.2122922, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 212.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17115.978956222534, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,212", + "created": 1742744833.2126343, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 212.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17116.321086883545, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:13,212", + "created": 1742744833.2127528, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 212.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17116.43958091736, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,212", + "created": 1742744833.2128904, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 212.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17116.5771484375, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,213", + "created": 1742744833.2133088, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 213.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17116.995573043823, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,221", + "created": 1742744833.2217097, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 221.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17125.396490097046, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,222", + "created": 1742744833.222175, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 222.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17125.861644744873, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,223", + "created": 1742744833.2232187, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 223.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17126.90544128418, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,223", + "created": 1742744833.223662, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 223.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17127.34866142273, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:13,223", + "created": 1742744833.2238405, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 223.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17127.527236938477, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + } + ], + "msecs": 545.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17449.265003204346, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.32173776626586914 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,546", + "created": 1742744833.546793, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,546", + "created": 1742744833.5462906, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): True ()", + "module": "test", + "msecs": 546.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17449.9773979187, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,546", + "created": 1742744833.5465748, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = True ()", + "module": "test", + "msecs": 546.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17450.26159286499, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 546.0, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17450.479745864868, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002181529998779297 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,547", + "created": 1742744833.547512, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,547", + "created": 1742744833.547133, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): True ()", + "module": "test", + "msecs": 547.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17450.819730758667, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,547", + "created": 1742744833.5473306, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = True ()", + "module": "test", + "msecs": 547.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17451.017379760742, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 547.0, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17451.19881629944, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00018143653869628906 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:13,547", + "created": 1742744833.5477939, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "connection_established", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Adding secrets to socket_protocol", + "module": "test_add_methods", + "moduleLogger": [], + "msecs": 547.0, + "msg": "Adding secrets to socket_protocol", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17451.480627059937, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,548", + "created": 1742744833.5484657, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client connection status", + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,548", + "created": 1742744833.5480947, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): False ()", + "module": "test", + "msecs": 548.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17451.781511306763, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,548", + "created": 1742744833.5482862, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = False ()", + "module": "test", + "msecs": 548.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17451.97296142578, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 548.0, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17452.152490615845, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00017952919006347656 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,549", + "created": 1742744833.5498235, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,549", + "created": 1742744833.5494235, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): False ()", + "module": "test", + "msecs": 549.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17453.110218048096, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:13,549", + "created": 1742744833.5496342, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = False ()", + "module": "test", + "msecs": 549.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17453.32098007202, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 549.0, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17453.510284423828, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00018930435180664062 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:13,651", + "created": 1742744833.6512403, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "connection_established", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 31, + "message": "Doing authentification", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: authentification request, data_id: seed", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,550", + "created": 1742744833.5502868, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: seed, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 550.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17453.973531723022, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,551", + "created": 1742744833.5512831, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 551.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17454.969882965088, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,559", + "created": 1742744833.559988, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 559.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17463.674783706665, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,560", + "created": 1742744833.5608294, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 560.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17464.516162872314, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): fd 82 a2 a9 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,562", + "created": 1742744833.562093, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): fd 82 a2 a9 3a 3e", + "module": "__init__", + "msecs": 562.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17465.779781341553, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: seed", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,562", + "created": 1742744833.5628812, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: seed, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 562.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17466.567993164062, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "__authentificate_create_seed__" + ], + "asctime": "2025-03-23 16:47:13,563", + "created": 1742744833.5631938, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __authentificate_create_seed__ to process received data", + "module": "__init__", + "msecs": 563.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17466.880559921265, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: authentification response, data_id: seed", + "status: okay", + "'33e315121cf78eb3d5b6aa11d62eb26c7e408540a15faaabbc054e34e3939a65'" + ], + "asctime": "2025-03-23 16:47:13,563", + "created": 1742744833.5635512, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: seed, status: okay, data: \"'33e315121cf78eb3d5b6aa11d62eb26c7e408540a15faaabbc054e34e3939a65'\"", + "module": "__init__", + "msecs": 563.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17467.237949371338, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 33 65 33" + ], + "asctime": "2025-03-23 16:47:13,564", + "created": 1742744833.5646873, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 33 65 33", + "module": "__init__", + "msecs": 564.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17468.374013900757, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 33 65 33" + ], + "asctime": "2025-03-23 16:47:13,573", + "created": 1742744833.573892, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 33 33 65 33", + "module": "__init__", + "msecs": 573.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17477.57887840271, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 31 35 31 32 31 63 66 37 38 65 62 33 64 35 62 36 61 61 31 31 64 36 32 65 62 32 36 63 37 65 34 30 38 35 34 30 61 31 35 66 61 61 61 62 62 63 30 35 34 65 33 34 65 33 39 33 39 61 36 35 22 7d 32 9c" + ], + "asctime": "2025-03-23 16:47:13,574", + "created": 1742744833.5749063, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 31 35 31 32 31 63 66 37 38 65 62 33 64 35 62 36 61 61 31 31 64 36 32 65 62 32 36 63 37 65 34 30 38 35 34 30 61 31 35 66 61 61 61 62 62 63 30 35 34 65 33 34 65 33 39 33 39 61 36 35 22 7d 32 9c", + "module": "__init__", + "msecs": 574.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17478.593111038208, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 31 35 31 32 31 63 66 37 38 65 62 33 64 35 62 36 61 61 31 31 64 36 32 65 62 32 36 63 37 65 34 30 38 35 34 30 61 31 35 66 61 61 61 62 62 63 30 35 34 65 33 34 65 33 39 33 39 61 36 35 22 7d 32 9c" + ], + "asctime": "2025-03-23 16:47:13,583", + "created": 1742744833.5834439, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 31 35 31 32 31 63 66 37 38 65 62 33 64 35 62 36 61 61 31 31 64 36 32 65 62 32 36 63 37 65 34 30 38 35 34 30 61 31 35 66 61 61 61 62 62 63 30 35 34 65 33 34 65 33 39 33 39 61 36 35 22 7d 32 9c", + "module": "__init__", + "msecs": 583.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17487.130641937256, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-server:", + "(4): f4 6d 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,584", + "created": 1742744833.5842001, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (4): f4 6d 3a 3e", + "module": "__init__", + "msecs": 584.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17487.886905670166, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(4): f4 6d 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,585", + "created": 1742744833.585189, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (4): f4 6d 3a 3e", + "module": "__init__", + "msecs": 585.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17488.87586593628, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: seed", + "status: okay", + "'33e315121cf78eb3d5b6aa11d62eb26c7e408540a15faaabbc054e34e3939a65'" + ], + "asctime": "2025-03-23 16:47:13,586", + "created": 1742744833.5861204, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: seed, status: okay, data: \"'33e315121cf78eb3d5b6aa11d62eb26c7e408540a15faaabbc054e34e3939a65'\"", + "module": "__init__", + "msecs": 586.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17489.80712890625, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "__authentificate_create_key__" + ], + "asctime": "2025-03-23 16:47:13,586", + "created": 1742744833.5864027, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __authentificate_create_key__ to process received data", + "module": "__init__", + "msecs": 586.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17490.089416503906, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: authentification request, data_id: key", + "status: okay", + "'62b46adfaf683dc8157251a2010826f6b709b2e902d90727502e0dbd05e55c453ce76973fe25f49bbdf2ca09d52db3b247adec86000ec2536fe5a928d4dcd635'" + ], + "asctime": "2025-03-23 16:47:13,586", + "created": 1742744833.5867836, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: authentification request, data_id: key, status: okay, data: \"'62b46adfaf683dc8157251a2010826f6b709b2e902d90727502e0dbd05e55c453ce76973fe25f49bbdf2ca09d52db3b247adec86000ec2536fe5a928d4dcd635'\"", + "module": "__init__", + "msecs": 586.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17490.47040939331, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 32 62 34" + ], + "asctime": "2025-03-23 16:47:13,588", + "created": 1742744833.5881443, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 32 62 34", + "module": "__init__", + "msecs": 588.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17491.831064224243, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 32 62 34" + ], + "asctime": "2025-03-23 16:47:13,596", + "created": 1742744833.5968156, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 30 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 22 36 32 62 34", + "module": "__init__", + "msecs": 596.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17500.502347946167, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 36 61 64 66 61 66 36 38 33 64 63 38 31 35 37 32 35 31 61 32 30 31 30 38 32 36 66 36 62 37 30 39 62 32 65 39 30 32 64 39 30 37 32 37 35 30 32 65 30 64 62 64 30 35 65 35 35 63 34 35 33 63 65 37" + ], + "asctime": "2025-03-23 16:47:13,597", + "created": 1742744833.5976622, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 36 61 64 66 61 66 36 38 33 64 63 38 31 35 37 32 35 31 61 32 30 31 30 38 32 36 66 36 62 37 30 39 62 32 65 39 30 32 64 39 30 37 32 37 35 30 32 65 30 64 62 64 30 35 65 35 35 63 34 35 33 63 65 37", + "module": "__init__", + "msecs": 597.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17501.348972320557, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 36 61 64 66 61 66 36 38 33 64 63 38 31 35 37 32 35 31 61 32 30 31 30 38 32 36 66 36 62 37 30 39 62 32 65 39 30 32 64 39 30 37 32 37 35 30 32 65 30 64 62 64 30 35 65 35 35 63 34 35 33 63 65 37" + ], + "asctime": "2025-03-23 16:47:13,606", + "created": 1742744833.6062753, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 36 61 64 66 61 66 36 38 33 64 63 38 31 35 37 32 35 31 61 32 30 31 30 38 32 36 66 36 62 37 30 39 62 32 65 39 30 32 64 39 30 37 32 37 35 30 32 65 30 64 62 64 30 35 65 35 35 63 34 35 33 63 65 37", + "module": "__init__", + "msecs": 606.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17509.96208190918, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 36 39 37 33 66 65 32 35 66 34 39 62 62 64 66 32 63 61 30 39 64 35 32 64 62 33 62 32 34 37 61 64 65 63 38 36 30 30 30 65 63 32 35 33 36 66 65 35 61 39 32 38 64 34 64 63 64 36 33 35 22 7d eb 3c" + ], + "asctime": "2025-03-23 16:47:13,607", + "created": 1742744833.6070502, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 36 39 37 33 66 65 32 35 66 34 39 62 62 64 66 32 63 61 30 39 64 35 32 64 62 33 62 32 34 37 61 64 65 63 38 36 30 30 30 65 63 32 35 33 36 66 65 35 61 39 32 38 64 34 64 63 64 36 33 35 22 7d eb 3c", + "module": "__init__", + "msecs": 607.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17510.73694229126, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 36 39 37 33 66 65 32 35 66 34 39 62 62 64 66 32 63 61 30 39 64 35 32 64 62 33 62 32 34 37 61 64 65 63 38 36 30 30 30 65 63 32 35 33 36 66 65 35 61 39 32 38 64 34 64 63 64 36 33 35 22 7d eb 3c" + ], + "asctime": "2025-03-23 16:47:13,615", + "created": 1742744833.615585, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 36 39 37 33 66 65 32 35 66 34 39 62 62 64 66 32 63 61 30 39 64 35 32 64 62 33 62 32 34 37 61 64 65 63 38 36 30 30 30 65 63 32 35 33 36 66 65 35 61 39 32 38 64 34 64 63 64 36 33 35 22 7d eb 3c", + "module": "__init__", + "msecs": 615.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17519.271850585938, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-client:", + "(4): fa 73 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,616", + "created": 1742744833.6164477, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (4): fa 73 3a 3e", + "module": "__init__", + "msecs": 616.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17520.134449005127, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(4): fa 73 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,617", + "created": 1742744833.6174567, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (4): fa 73 3a 3e", + "module": "__init__", + "msecs": 617.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17521.143436431885, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: authentification request, data_id: key", + "status: okay", + "'62b46adfaf683dc8157251a2010826f6b709b2e902d90727502e0dbd05e55c453ce76973fe25f49bbdf2ca09d52db3b247adec86000ec2536fe5a928d4dcd635'" + ], + "asctime": "2025-03-23 16:47:13,618", + "created": 1742744833.618504, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: authentification request, data_id: key, status: okay, data: \"'62b46adfaf683dc8157251a2010826f6b709b2e902d90727502e0dbd05e55c453ce76973fe25f49bbdf2ca09d52db3b247adec86000ec2536fe5a928d4dcd635'\"", + "module": "__init__", + "msecs": 618.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17522.190809249878, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "__authentificate_check_key__" + ], + "asctime": "2025-03-23 16:47:13,618", + "created": 1742744833.618768, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __authentificate_check_key__ to process received data", + "module": "__init__", + "msecs": 618.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17522.454738616943, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2025-03-23 16:47:13,619", + "created": 1742744833.6191154, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 619.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17522.802114486694, + "stack_info": null, + "thread": 140629174646464, + "threadName": "Thread-29 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2025-03-23 16:47:13,619", + "created": 1742744833.6199794, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 619.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17523.66614341736, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d" + ], + "asctime": "2025-03-23 16:47:13,628", + "created": 1742744833.6285868, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 31 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 74 72 75 65 7d", + "module": "__init__", + "msecs": 628.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17532.273530960083, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,629", + "created": 1742744833.6293185, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 629.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17533.005237579346, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 94 fe 74 32 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,630", + "created": 1742744833.6303988, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 94 fe 74 32 3a 3e", + "module": "__init__", + "msecs": 630.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17534.085512161255, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: authentification response, data_id: key", + "status: okay", + "True" + ], + "asctime": "2025-03-23 16:47:13,631", + "created": 1742744833.6310935, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: authentification response, data_id: key, status: okay, data: \"True\"", + "module": "__init__", + "msecs": 631.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17534.780263900757, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:", + "__authentificate_process_feedback__" + ], + "asctime": "2025-03-23 16:47:13,631", + "created": 1742744833.6313367, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __authentificate_process_feedback__ to process received data", + "module": "__init__", + "msecs": 631.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17535.02345085144, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:13,631", + "created": 1742744833.631539, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentificate_process_feedback__", + "levelname": "INFO", + "levelno": 20, + "lineno": 370, + "message": "prot-client: Got positive authentification feedback", + "module": "__init__", + "msecs": 631.0, + "msg": "%s Got positive authentification feedback", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17535.225868225098, + "stack_info": null, + "thread": 140629166253760, + "threadName": "Thread-30 (_start)" + } + ], + "msecs": 651.0, + "msg": "Doing authentification", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17554.927110671997, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.019701242446899414 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,652", + "created": 1742744833.6523635, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,651", + "created": 1742744833.6519144, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client connection status): True ()", + "module": "test", + "msecs": 651.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17555.601119995117, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,652", + "created": 1742744833.6521583, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client connection status): result = True ()", + "module": "test", + "msecs": 652.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17555.845022201538, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 652.0, + "msg": "Client connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17556.050300598145, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0002052783966064453 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,653", + "created": 1742744833.6530755, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,652", + "created": 1742744833.6526968, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server connection status): True ()", + "module": "test", + "msecs": 652.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17556.38360977173, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:13,652", + "created": 1742744833.6528926, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server connection status): result = True ()", + "module": "test", + "msecs": 652.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17556.57935142517, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 653.0, + "msg": "Server connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17556.76221847534, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00018286705017089844 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.8149857521057129, + "time_finished": "2025-03-23 16:47:13,653", + "time_start": "2025-03-23 16:47:12,838" + }, + "REQ-0021": { + "args": null, + "asctime": "2025-03-23 16:47:13,653", + "created": 1742744833.653815, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0021", + "module": "__init__", + "moduleLogger": [], + "msecs": 653.0, + "msg": "REQ-0021", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17557.501792907715, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:13,664", + "created": 1742744833.664326, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:13,654", + "created": 1742744833.6549757, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 654.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17558.66241455078, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:13,656", + "created": 1742744833.6561117, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 656.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17559.7984790802, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:13,656", + "created": 1742744833.656369, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 656.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17560.05573272705, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:13,656", + "created": 1742744833.6567488, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 656.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17560.43553352356, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:13,656", + "created": 1742744833.6569638, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 656.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17560.65058708191, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:13,657", + "created": 1742744833.657208, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 657.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17560.89472770691, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:13,657", + "created": 1742744833.657417, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 657.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17561.10382080078, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:13,657", + "created": 1742744833.657596, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 657.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17561.282873153687, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:13,657", + "created": 1742744833.6577644, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 657.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17561.451196670532, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:13,657", + "created": 1742744833.6579623, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 657.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17561.649084091187, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:13,658", + "created": 1742744833.6582093, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 658.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17561.896085739136, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:13,658", + "created": 1742744833.6583962, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 658.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17562.08300590515, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:13,658", + "created": 1742744833.6585715, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 658.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17562.25824356079, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:13,658", + "created": 1742744833.6587389, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 658.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17562.42561340332, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:13,658", + "created": 1742744833.6589122, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 658.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17562.598943710327, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:13,659", + "created": 1742744833.6590996, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 659.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17562.7863407135, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:13,659", + "created": 1742744833.659268, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 659.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17562.954664230347, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:13,659", + "created": 1742744833.6594453, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 659.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17563.1320476532, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:13,659", + "created": 1742744833.6596231, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 659.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17563.309907913208, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:13,659", + "created": 1742744833.6597905, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 659.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17563.477277755737, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:13,659", + "created": 1742744833.659963, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 659.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17563.649654388428, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:13,660", + "created": 1742744833.6601212, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 660.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17563.80796432495, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:13,660", + "created": 1742744833.660288, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 660.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17563.974857330322, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:13,660", + "created": 1742744833.6605835, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 660.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17564.27025794983, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:13,660", + "created": 1742744833.660763, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 660.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17564.449787139893, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:13,660", + "created": 1742744833.6609814, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 660.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17564.66817855835, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:13,661", + "created": 1742744833.6611547, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 661.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17564.841508865356, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:13,661", + "created": 1742744833.6613219, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 661.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17565.008640289307, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:13,661", + "created": 1742744833.6614966, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 661.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17565.183401107788, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:13,661", + "created": 1742744833.6618323, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 661.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17565.519094467163, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:13,662", + "created": 1742744833.6620882, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 662.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17565.77491760254, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:13,662", + "created": 1742744833.6622915, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 662.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17565.978288650513, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:13,662", + "created": 1742744833.6624691, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 662.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17566.155910491943, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:13,662", + "created": 1742744833.6626391, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 662.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17566.325902938843, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:13,662", + "created": 1742744833.662814, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 662.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17566.500663757324, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:13,662", + "created": 1742744833.6629994, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 662.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17566.686153411865, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:13,663", + "created": 1742744833.6631687, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 663.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17566.855430603027, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:13,663", + "created": 1742744833.6633394, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 663.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17567.026138305664, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:13,663", + "created": 1742744833.6635146, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 663.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17567.201375961304, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:13,663", + "created": 1742744833.6636822, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 663.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17567.368984222412, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:13,663", + "created": 1742744833.6638432, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 663.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17567.529916763306, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:13,664", + "created": 1742744833.6640053, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 664.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17567.692041397095, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:13,664", + "created": 1742744833.6641667, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 664.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17567.853450775146, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 664.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17568.012714385986, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00015926361083984375 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:14,009", + "created": 1742744834.0095344, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:13,664", + "created": 1742744833.664708, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 664.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17568.394660949707, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:13,664", + "created": 1742744833.6648822, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 664.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17568.56894493103, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:13,665", + "created": 1742744833.6650536, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 665.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17568.740367889404, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,665", + "created": 1742744833.6653268, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 665.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17569.013595581055, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:13,665", + "created": 1742744833.665938, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 665.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17569.624662399292, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:13,666", + "created": 1742744833.6661553, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 666.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17569.842100143433, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:13,666", + "created": 1742744833.6663532, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 666.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17570.039987564087, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,666", + "created": 1742744833.6669898, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 666.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17570.676565170288, + "stack_info": null, + "thread": 140629157861056, + "threadName": "Thread-31 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,675", + "created": 1742744833.6755762, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 675.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17579.26297187805, + "stack_info": null, + "thread": 140629157861056, + "threadName": "Thread-31 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,676", + "created": 1742744833.6763551, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 676.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17580.041885375977, + "stack_info": null, + "thread": 140629157861056, + "threadName": "Thread-31 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,677", + "created": 1742744833.6775658, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 677.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17581.252574920654, + "stack_info": null, + "thread": 140629157861056, + "threadName": "Thread-31 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,678", + "created": 1742744833.6783304, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 678.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17582.017183303833, + "stack_info": null, + "thread": 140629157861056, + "threadName": "Thread-31 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:13,678", + "created": 1742744833.6786053, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 678.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17582.292079925537, + "stack_info": null, + "thread": 140629157861056, + "threadName": "Thread-31 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,678", + "created": 1742744833.6789472, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 678.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17582.63397216797, + "stack_info": null, + "thread": 140629157861056, + "threadName": "Thread-31 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,680", + "created": 1742744833.6804414, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 680.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17584.1281414032, + "stack_info": null, + "thread": 140629149468352, + "threadName": "Thread-32 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:13,689", + "created": 1742744833.6890478, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 689.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17592.734575271606, + "stack_info": null, + "thread": 140629149468352, + "threadName": "Thread-32 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,689", + "created": 1742744833.689775, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 689.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17593.461751937866, + "stack_info": null, + "thread": 140629149468352, + "threadName": "Thread-32 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:13,690", + "created": 1742744833.690906, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 690.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17594.592809677124, + "stack_info": null, + "thread": 140629149468352, + "threadName": "Thread-32 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:13,691", + "created": 1742744833.6915872, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 691.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17595.273971557617, + "stack_info": null, + "thread": 140629149468352, + "threadName": "Thread-32 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:13,691", + "created": 1742744833.6918297, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 691.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17595.516443252563, + "stack_info": null, + "thread": 140629149468352, + "threadName": "Thread-32 (_start)" + } + ], + "msecs": 9.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17913.22112083435, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3177046775817871 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,010", + "created": 1742744834.0107055, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,010", + "created": 1742744834.01023, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): True ()", + "module": "test", + "msecs": 10.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17913.91682624817, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,010", + "created": 1742744834.0104902, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = True ()", + "module": "test", + "msecs": 10.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17914.17694091797, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 10.0, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17914.392232894897, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00021529197692871094 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,011", + "created": 1742744834.011463, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,011", + "created": 1742744834.0110755, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): True ()", + "module": "test", + "msecs": 11.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17914.762258529663, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,011", + "created": 1742744834.011277, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = True ()", + "module": "test", + "msecs": 11.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17914.963722229004, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 11.0, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17915.149688720703, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00018596649169921875 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.0124664, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "is_connected", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 43, + "message": "Disconnecting Server and Client", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,011", + "created": 1742744834.0117493, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 11.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17915.436029434204, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,011", + "created": 1742744834.0119812, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 11.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17915.66801071167, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.0121677, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 12.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17915.854454040527, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.0123522, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 12.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.038990020752, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 12.0, + "msg": "Disconnecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.15319252014, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00011420249938964844 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.0126588, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.012553, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): False ()", + "module": "test", + "msecs": 12.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.239738464355, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.0126076, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = False ()", + "module": "test", + "msecs": 12.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.29433631897, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 12.0, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.345596313477, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 5.125999450683594e-05 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.0128553, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.012744, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): False ()", + "module": "test", + "msecs": 12.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.430711746216, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,012", + "created": 1742744834.012803, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = False ()", + "module": "test", + "msecs": 12.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.489839553833, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 12.0, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.542053222656, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 5.221366882324219e-05 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3590402603149414, + "time_finished": "2025-03-23 16:47:14,012", + "time_start": "2025-03-23 16:47:13,653" + }, + "REQ-0022": { + "args": null, + "asctime": "2025-03-23 16:47:14,013", + "created": 1742744834.0130577, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0022", + "module": "__init__", + "moduleLogger": [], + "msecs": 13.0, + "msg": "REQ-0022", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17916.744470596313, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0169456, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,013", + "created": 1742744834.01348, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 13.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17917.166709899902, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,013", + "created": 1742744834.0139823, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 13.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17917.66905784607, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0140862, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17917.773008346558, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0142086, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17917.895317077637, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0142775, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17917.964220046997, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0143752, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.06197166443, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0144439, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.13063621521, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0145187, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.205499649048, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.014583, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.269872665405, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0146544, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.341159820557, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.014726, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.412685394287, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.014795, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.481826782227, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0148664, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.553113937378, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0149255, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.612241744995, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:14,014", + "created": 1742744834.0149908, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 14.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.67756843567, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0150654, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.752193450928, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0151298, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.816566467285, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.015196, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.882846832275, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.015264, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17918.95079612732, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.015328, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.01469230652, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0153894, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.076204299927, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0154495, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.13628578186, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0155118, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.198513031006, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0156264, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.313192367554, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0156941, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.38090324402, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0157804, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.467210769653, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.015849, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.535875320435, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0159128, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.599533081055, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:14,015", + "created": 1742744834.0159783, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 15.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.665098190308, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.016048, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.734716415405, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0161161, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.80290412903, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0161846, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.87133026123, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0162513, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.93808746338, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.016311, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17919.997692108154, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0163789, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.0656414032, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0164497, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.13645172119, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.016513, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.199871063232, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0165787, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.265436172485, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0166454, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.332193374634, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0167086, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.395374298096, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0167687, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.45545578003, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0168293, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.51601409912, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,016", + "created": 1742744834.0168886, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 16.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.575380325317, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 16.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.632362365723, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 5.698204040527344e-05 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:14,361", + "created": 1742744834.3610702, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,017", + "created": 1742744834.0170927, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 17.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.77946662903, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,017", + "created": 1742744834.017162, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 17.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.848846435547, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,017", + "created": 1742744834.017225, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 17.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17920.91178894043, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,017", + "created": 1742744834.0173326, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 17.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17921.019315719604, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,017", + "created": 1742744834.017569, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 17.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17921.255826950073, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,017", + "created": 1742744834.0178041, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 17.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17921.490907669067, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,017", + "created": 1742744834.0178742, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 17.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17921.561002731323, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:14,018", + "created": 1742744834.0180867, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 18.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17921.773433685303, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:14,026", + "created": 1742744834.0262916, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 26.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17929.978370666504, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,026", + "created": 1742744834.0266228, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 26.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17930.309534072876, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,027", + "created": 1742744834.0275462, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 27.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17931.232929229736, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,027", + "created": 1742744834.0278063, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 27.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17931.493043899536, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:14,027", + "created": 1742744834.0278897, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 27.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17931.57649040222, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,027", + "created": 1742744834.027991, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 27.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17931.67781829834, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:14,028", + "created": 1742744834.0283585, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 28.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17932.045221328735, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:14,036", + "created": 1742744834.036653, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 36.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17940.33980369568, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,036", + "created": 1742744834.0369813, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 36.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17940.6681060791, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,037", + "created": 1742744834.037976, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 37.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17941.662788391113, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,038", + "created": 1742744834.0382867, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 38.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17941.973447799683, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:14,038", + "created": 1742744834.0383906, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 38.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 17942.07739830017, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + } + ], + "msecs": 361.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18264.75691795349, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3226795196533203 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,362", + "created": 1742744834.3622332, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,361", + "created": 1742744834.361725, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): True ()", + "module": "test", + "msecs": 361.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18265.411853790283, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,361", + "created": 1742744834.361971, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = True ()", + "module": "test", + "msecs": 361.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18265.657663345337, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 362.0, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18265.91992378235, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00026226043701171875 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,362", + "created": 1742744834.3629463, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,362", + "created": 1742744834.3625653, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): True ()", + "module": "test", + "msecs": 362.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18266.252040863037, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,362", + "created": 1742744834.3627622, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = True ()", + "module": "test", + "msecs": 362.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18266.448974609375, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 362.0, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18266.63303375244, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00018405914306640625 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:14,364", + "created": 1742744834.3640351, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "reconnect", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 55, + "message": "Disconnecting Server and Client", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,363", + "created": 1742744834.3632336, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-client: Connection Lost...", + "module": "__init__", + "msecs": 363.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18266.92032814026, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,363", + "created": 1742744834.3634539, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 363.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18267.14062690735, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,363", + "created": 1742744834.3636394, + "exc_text": null, + "filename": "__init__.py", + "funcName": "disconnect", + "levelname": "INFO", + "levelno": 20, + "lineno": 296, + "message": "comm-server: Connection Lost...", + "module": "__init__", + "msecs": 363.0, + "msg": "%s Connection Lost...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18267.32611656189, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,363", + "created": 1742744834.3638532, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 363.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18267.539978027344, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 364.0, + "msg": "Disconnecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18267.7218914032, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.0001819133758544922 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,364", + "created": 1742744834.364773, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,364", + "created": 1742744834.3643417, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): False ()", + "module": "test", + "msecs": 364.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18268.028497695923, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,364", + "created": 1742744834.3645833, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = False ()", + "module": "test", + "msecs": 364.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18268.270015716553, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 364.0, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18268.459796905518, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00018978118896484375 + }, + { + "args": [ + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,365", + "created": 1742744834.365492, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server Communication instance connection status is correct (Content False and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,365", + "created": 1742744834.3650951, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): False ()", + "module": "test", + "msecs": 365.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18268.781900405884, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "=", + "False", + "" + ], + "asctime": "2025-03-23 16:47:14,365", + "created": 1742744834.3652954, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = False ()", + "module": "test", + "msecs": 365.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18268.98217201233, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 365.0, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18269.178867340088, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00019669532775878906 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:14,710", + "created": 1742744834.710692, + "exc_text": null, + "filename": "test_add_methods.py", + "funcName": "reconnect", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 61, + "message": "Connecting Server and Client", + "module": "test_add_methods", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,365", + "created": 1742744834.3657937, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 365.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18269.48046684265, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,365", + "created": 1742744834.3659892, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 365.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18269.675970077515, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,366", + "created": 1742744834.3662314, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 366.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18269.918203353882, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,366", + "created": 1742744834.3665612, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 366.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18270.24793624878, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,367", + "created": 1742744834.367236, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 367.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18270.922660827637, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,367", + "created": 1742744834.3674495, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 367.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18271.13628387451, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,367", + "created": 1742744834.367652, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 367.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18271.33870124817, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:14,368", + "created": 1742744834.3683383, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 368.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18272.025108337402, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:14,376", + "created": 1742744834.3768942, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 38 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 376.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18280.58099746704, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,377", + "created": 1742744834.377722, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 377.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18281.40878677368, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 53 5e 67 0b 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,378", + "created": 1742744834.3789344, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (6): 53 5e 67 0b 3a 3e", + "module": "__init__", + "msecs": 378.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18282.621145248413, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,379", + "created": 1742744834.379694, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 379.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18283.38074684143, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:14,379", + "created": 1742744834.3799691, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 379.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18283.655881881714, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,380", + "created": 1742744834.3803027, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 380.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18283.989429473877, + "stack_info": null, + "thread": 140629141075648, + "threadName": "Thread-33 (_start)" + }, + { + "args": [ + "comm-server:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:14,381", + "created": 1742744834.3813622, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 381.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18285.048961639404, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "comm-client:", + "(64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d" + ], + "asctime": "2025-03-23 16:47:14,390", + "created": 1742744834.3901067, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (64): 3a 3c 7b 22 64 61 74 61 5f 69 64 22 3a 3d 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 3d 20 39 2c 20 22 73 74 61 74 75 73 22 3a 3d 20 30 2c 20 22 64 61 74 61 22 3a 3d 20 6e 75 6c 6c 7d", + "module": "__init__", + "msecs": 390.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18293.793439865112, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "comm-server:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,391", + "created": 1742744834.3910167, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 391.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18294.703483581543, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "comm-client:", + "(6): 30 59 be 2f 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,392", + "created": 1742744834.3922668, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (6): 30 59 be 2f 3a 3e", + "module": "__init__", + "msecs": 392.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18295.953512191772, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,393", + "created": 1742744834.3930306, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 393.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18296.717405319214, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:14,393", + "created": 1742744834.3932734, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 393.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18296.96011543274, + "stack_info": null, + "thread": 140629132682944, + "threadName": "Thread-34 (_start)" + } + ], + "msecs": 710.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_add_methods.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18614.378690719604, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.31741857528686523 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,711", + "created": 1742744834.7117841, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Client Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Client Communication instance connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,711", + "created": 1742744834.7113373, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Client Communication instance connection status): True ()", + "module": "test", + "msecs": 711.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18615.024089813232, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Client Communication instance connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,711", + "created": 1742744834.7115784, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Client Communication instance connection status): result = True ()", + "module": "test", + "msecs": 711.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18615.265130996704, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 711.0, + "msg": "Client Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18615.47088623047, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00020575523376464844 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,712", + "created": 1742744834.7125013, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Server Communication instance connection status is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Server Communication instance connection status", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,712", + "created": 1742744834.7121153, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Server Communication instance connection status): True ()", + "module": "test", + "msecs": 712.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18615.80204963684, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Server Communication instance connection status", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:14,712", + "created": 1742744834.7123165, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Server Communication instance connection status): result = True ()", + "module": "test", + "msecs": 712.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18616.003274917603, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 712.0, + "msg": "Server Communication instance connection status is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18616.188049316406, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00018477439880371094 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.6994435787200928, + "time_finished": "2025-03-23 16:47:14,712", + "time_start": "2025-03-23 16:47:14,013" + }, + "REQ-0023": { + "args": null, + "asctime": "2025-03-23 16:47:14,713", + "created": 1742744834.7132254, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testCase", + "levelname": "INFO", + "levelno": 20, + "lineno": 327, + "message": "REQ-0023", + "module": "__init__", + "moduleLogger": [], + "msecs": 713.0, + "msg": "REQ-0023", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/report/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18616.912126541138, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2025-03-23 16:47:14,725", + "created": 1742744834.7256274, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 44, + "message": "Setting up communication", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,714", + "created": 1742744834.7145753, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 714.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18618.26205253601, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,716", + "created": 1742744834.7169914, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 716.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18620.678186416626, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,717", + "created": 1742744834.7173145, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 520, + "message": "comm-server: Waiting for incomming connection", + "module": "__init__", + "msecs": 717.0, + "msg": "%s Waiting for incomming connection", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18621.00124359131, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,717", + "created": 1742744834.717758, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 717.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18621.444702148438, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:14,718", + "created": 1742744834.7180219, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 718.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18621.708631515503, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:14,718", + "created": 1742744834.7183487, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 718.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18622.03550338745, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:14,718", + "created": 1742744834.7185643, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 718.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18622.25103378296, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:14,718", + "created": 1742744834.7187603, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 718.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18622.44701385498, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:14,718", + "created": 1742744834.7189498, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 718.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18622.636556625366, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:14,719", + "created": 1742744834.7191603, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 719.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18622.847080230713, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:14,719", + "created": 1742744834.7193735, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 719.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18623.06022644043, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:14,719", + "created": 1742744834.7195814, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 719.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18623.268127441406, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:14,719", + "created": 1742744834.7197826, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 719.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18623.469352722168, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,719", + "created": 1742744834.7199616, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-server: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 719.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18623.648405075073, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:14,720", + "created": 1742744834.7201579, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 720.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18623.844623565674, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:14,720", + "created": 1742744834.7203827, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 720.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18624.069452285767, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:14,720", + "created": 1742744834.7205799, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-server: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 720.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18624.266624450684, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:14,720", + "created": 1742744834.7207904, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 720.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18624.47714805603, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:14,720", + "created": 1742744834.7209954, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-server: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 720.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18624.682188034058, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:14,721", + "created": 1742744834.7211893, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 721.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18624.876022338867, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:14,721", + "created": 1742744834.7213738, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 721.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18625.06055831909, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:14,721", + "created": 1742744834.721551, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-server: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 721.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18625.237703323364, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,721", + "created": 1742744834.7217352, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-server: Initialisation finished.", + "module": "__init__", + "msecs": 721.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18625.42200088501, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,722", + "created": 1742744834.7220957, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 722.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18625.78248977661, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "authentification request", + "authentification response" + ], + "asctime": "2025-03-23 16:47:14,722", + "created": 1742744834.72228, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=authentification request and Response=authentification response", + "module": "__init__", + "msecs": 722.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18625.966787338257, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: seed" + ], + "asctime": "2025-03-23 16:47:14,722", + "created": 1742744834.722497, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 722.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18626.18374824524, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: seed" + ], + "asctime": "2025-03-23 16:47:14,722", + "created": 1742744834.7226834, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: seed) to the authentification whitelist", + "module": "__init__", + "msecs": 722.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18626.370191574097, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification request, data_id: key" + ], + "asctime": "2025-03-23 16:47:14,722", + "created": 1742744834.7228622, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification request, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 722.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18626.549005508423, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: authentification response, data_id: key" + ], + "asctime": "2025-03-23 16:47:14,723", + "created": 1742744834.7230299, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: authentification response, data_id: key) to the authentification whitelist", + "module": "__init__", + "msecs": 723.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18626.71661376953, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_seed__'", + "0", + "0" + ], + "asctime": "2025-03-23 16:47:14,723", + "created": 1742744834.7232058, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_seed__' for SID=0 and DID=0", + "module": "__init__", + "msecs": 723.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18626.89256668091, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_create_key__'", + "1", + "0" + ], + "asctime": "2025-03-23 16:47:14,723", + "created": 1742744834.7233846, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_create_key__' for SID=1 and DID=0", + "module": "__init__", + "msecs": 723.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18627.071380615234, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_check_key__'", + "0", + "1" + ], + "asctime": "2025-03-23 16:47:14,723", + "created": 1742744834.7235613, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_check_key__' for SID=0 and DID=1", + "module": "__init__", + "msecs": 723.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18627.24804878235, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__authentificate_process_feedback__'", + "1", + "1" + ], + "asctime": "2025-03-23 16:47:14,723", + "created": 1742744834.723739, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__authentificate_process_feedback__' for SID=1 and DID=1", + "module": "__init__", + "msecs": 723.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18627.42567062378, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,723", + "created": 1742744834.7238936, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__authentification_state_reset__", + "levelname": "INFO", + "levelno": 20, + "lineno": 380, + "message": "prot-client: Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "module": "__init__", + "msecs": 723.0, + "msg": "%s Resetting authentification state to AUTH_STATE_UNTRUSTED_CONNECTION", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18627.580404281616, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "channel name request", + "channel name response" + ], + "asctime": "2025-03-23 16:47:14,724", + "created": 1742744834.724074, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=channel name request and Response=channel name response", + "module": "__init__", + "msecs": 724.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18627.760648727417, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name request, data_id: name" + ], + "asctime": "2025-03-23 16:47:14,724", + "created": 1742744834.7242603, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name request, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 724.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18627.947092056274, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "service: channel name response, data_id: name" + ], + "asctime": "2025-03-23 16:47:14,724", + "created": 1742744834.72443, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_msg_to_auth_whitelist_", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 571, + "message": "prot-client: Adding Message (service: channel name response, data_id: name) to the authentification whitelist", + "module": "__init__", + "msecs": 724.0, + "msg": "%s Adding Message (%s) to the authentification whitelist", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18628.116846084595, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_request__'", + "8", + "0" + ], + "asctime": "2025-03-23 16:47:14,724", + "created": 1742744834.7246165, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_request__' for SID=8 and DID=0", + "module": "__init__", + "msecs": 724.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18628.303289413452, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "'__channel_name_response__'", + "9", + "0" + ], + "asctime": "2025-03-23 16:47:14,724", + "created": 1742744834.7247982, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 172, + "message": "prot-client: Adding callback '__channel_name_response__' for SID=9 and DID=0", + "module": "__init__", + "msecs": 724.0, + "msg": "%s Adding callback %s for SID=%s and DID=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18628.484964370728, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "read data request", + "read data response" + ], + "asctime": "2025-03-23 16:47:14,724", + "created": 1742744834.7249725, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=read data request and Response=read data response", + "module": "__init__", + "msecs": 724.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18628.65924835205, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "write data request", + "write data response" + ], + "asctime": "2025-03-23 16:47:14,725", + "created": 1742744834.7251377, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=write data request and Response=write data response", + "module": "__init__", + "msecs": 725.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18628.824472427368, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "execute request", + "execute response" + ], + "asctime": "2025-03-23 16:47:14,725", + "created": 1742744834.7252977, + "exc_text": null, + "filename": "__init__.py", + "funcName": "add_service", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 597, + "message": "prot-client: Adding Service with Request=execute request and Response=execute response", + "module": "__init__", + "msecs": 725.0, + "msg": "%s Adding Service with Request=%s and Response=%s", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18628.984451293945, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,725", + "created": 1742744834.7254598, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__init__", + "levelname": "INFO", + "levelno": 20, + "lineno": 340, + "message": "prot-client: Initialisation finished.", + "module": "__init__", + "msecs": 725.0, + "msg": "%s Initialisation finished.", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18629.146575927734, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 725.0, + "msg": "Setting up communication", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18629.314184188843, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00016760826110839844 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:15,070", + "created": 1742744835.0706277, + "exc_text": null, + "filename": "test_helpers.py", + "funcName": "set_up_socket_protocol", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 47, + "message": "Connecting Server and Client", + "module": "test_helpers", + "moduleLogger": [ + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,726", + "created": 1742744834.726084, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-client: Connection established...", + "module": "__init__", + "msecs": 726.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18629.770755767822, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:" + ], + "asctime": "2025-03-23 16:47:14,726", + "created": 1742744834.7262688, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 726.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18629.955530166626, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:14,726", + "created": 1742744834.7264466, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-client: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 726.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18630.133390426636, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-client:", + "TX ->", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,726", + "created": 1742744834.726767, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 726.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18630.45382499695, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,727", + "created": 1742744834.7272408, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__connect__", + "levelname": "INFO", + "levelno": 20, + "lineno": 268, + "message": "comm-server: Connection established...", + "module": "__init__", + "msecs": 727.0, + "msg": "%s Connection established...", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18630.927562713623, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:" + ], + "asctime": "2025-03-23 16:47:14,727", + "created": 1742744834.727431, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 411, + "message": "comm-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 727.0, + "msg": "%s Cleaning up receive-buffer", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18631.117820739746, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:14,727", + "created": 1742744834.7276278, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__clean_receive_buffer__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 434, + "message": "prot-server: Cleaning up receive-buffer", + "module": "__init__", + "msecs": 727.0, + "msg": "%s Cleaning up receive-buffer", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18631.314516067505, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,728", + "created": 1742744834.7282062, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", + "module": "__init__", + "msecs": 728.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18631.892919540405, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + }, + { + "args": [ + "comm-server:", + "(21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,731", + "created": 1742744834.7313454, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (21): 3a 3c 00 00 00 00 00 00 00 08 00 00 00 00 6e 75 6c 6c 13 3a 3e", + "module": "__init__", + "msecs": 731.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18635.032176971436, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: channel name request, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,731", + "created": 1742744834.7317765, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: channel name request, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 731.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18635.46323776245, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + }, + { + "args": [ + "prot-server:", + "__channel_name_request__" + ], + "asctime": "2025-03-23 16:47:14,731", + "created": 1742744834.7319221, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 488, + "message": "prot-server: Executing callback __channel_name_request__ to process received data", + "module": "__init__", + "msecs": 731.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18635.608911514282, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + }, + { + "args": [ + "prot-server:", + "TX ->", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,732", + "created": 1742744834.7320783, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: TX -> service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 732.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18635.765075683594, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + }, + { + "args": [ + "comm-server:", + "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,732", + "created": 1742744834.732338, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", + "module": "__init__", + "msecs": 732.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18636.024713516235, + "stack_info": null, + "thread": 140628637775552, + "threadName": "Thread-36 (_start)" + }, + { + "args": [ + "comm-client:", + "(21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e" + ], + "asctime": "2025-03-23 16:47:14,735", + "created": 1742744834.7351654, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (21): 3a 3c 00 00 00 00 00 00 00 09 00 00 00 00 6e 75 6c 6c 12 3a 3e", + "module": "__init__", + "msecs": 735.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18638.8521194458, + "stack_info": null, + "thread": 140628637775552, + "threadName": "Thread-36 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: channel name response, data_id: name", + "status: okay", + "None" + ], + "asctime": "2025-03-23 16:47:14,735", + "created": 1742744834.735381, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: RX <- service: channel name response, data_id: name, status: okay, data: \"None\"", + "module": "__init__", + "msecs": 735.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18639.06764984131, + "stack_info": null, + "thread": 140628637775552, + "threadName": "Thread-36 (_start)" + }, + { + "args": [ + "prot-client:", + "__channel_name_response__" + ], + "asctime": "2025-03-23 16:47:14,735", + "created": 1742744834.7354534, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__data_available_callback__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 503, + "message": "prot-client: Executing callback __channel_name_response__ to process received data", + "module": "__init__", + "msecs": 735.0, + "msg": "%s Executing callback %s to process received data", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18639.140129089355, + "stack_info": null, + "thread": 140628637775552, + "threadName": "Thread-36 (_start)" + } + ], + "msecs": 70.0, + "msg": "Connecting Server and Client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_helpers.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18974.31445121765, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.3351743221282959 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:15,273", + "created": 1742744835.2730644, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "send_message_object", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 53, + "message": "Transfering a message client -> server", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-client:", + "TX ->", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:15,071", + "created": 1742744835.071412, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-client: TX -> service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 71.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18975.098848342896, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-client:", + "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" + ], + "asctime": "2025-03-23 16:47:15,072", + "created": 1742744835.0723176, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-client: TX -> (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", + "module": "__init__", + "msecs": 72.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18976.004362106323, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + }, + { + "args": [ + "comm-server:", + "(45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e" + ], + "asctime": "2025-03-23 16:47:15,078", + "created": 1742744835.078554, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-server: RX <- (45): 3a 3c 00 00 00 00 00 00 00 11 00 00 00 22 22 6d 73 67 31 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7d 3a 3e", + "module": "__init__", + "msecs": 78.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18982.240676879883, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + }, + { + "args": [ + "prot-server:", + "RX <-", + "service: 17, data_id: 34", + "status: okay", + "'msg1_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:15,079", + "created": 1742744835.0796492, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "INFO", + "levelno": 20, + "lineno": 445, + "message": "prot-server: RX <- service: 17, data_id: 34, status: okay, data: \"'msg1_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 79.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18983.335971832275, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + }, + { + "args": [ + "prot-server:" + ], + "asctime": "2025-03-23 16:47:15,079", + "created": 1742744835.0799854, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-server: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 79.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 18983.67214202881, + "stack_info": null, + "thread": 140629124290240, + "threadName": "Thread-35 (_start)" + } + ], + "msecs": 273.0, + "msg": "Transfering a message client -> server", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19176.751136779785, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.19307899475097656 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:15,274", + "created": 1742744835.2742414, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Client send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Client send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:15,273", + "created": 1742744835.2736888, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Client send Method): True ()", + "module": "test", + "msecs": 273.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19177.375555038452, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Client send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:15,273", + "created": 1742744835.2739456, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Client send Method): result = True ()", + "module": "test", + "msecs": 273.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19177.632331848145, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 274.0, + "msg": "Returnvalue of Client send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19177.92820930481, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00029587745666503906 + }, + { + "args": [ + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:15,275", + "created": 1742744835.275018, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on server side is correct (Content {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on server side", + "{'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:15,274", + "created": 1742744835.2746072, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on server side): {'data_id': 34, 'service_id': 17, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", + "module": "test", + "msecs": 274.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19178.29394340515, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on server side", + "=", + "{'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:15,274", + "created": 1742744835.2748191, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on server side): result = {'service_id': 17, 'data_id': 34, 'status': 0, 'data': 'msg1_data_to_be_transfered'} ()", + "module": "test", + "msecs": 274.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19178.505897521973, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 275.0, + "msg": "Received message on server side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19178.704738616943, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00019884109497070312 + }, + { + "args": [], + "asctime": "2025-03-23 16:47:15,476", + "created": 1742744835.4767165, + "exc_text": null, + "filename": "test_communication.py", + "funcName": "send_message_object", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 59, + "message": "Transfering a message server -> client", + "module": "test_communication", + "moduleLogger": [ + { + "args": [ + "prot-server:", + "TX ->", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:15,275", + "created": 1742744835.2754672, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-server: TX -> service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 275.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19179.15391921997, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "comm-server:", + "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" + ], + "asctime": "2025-03-23 16:47:15,276", + "created": 1742744835.2762823, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__tx__", + "levelname": "INFO", + "levelno": 20, + "lineno": 284, + "message": "comm-server: TX -> (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", + "module": "__init__", + "msecs": 276.0, + "msg": "%s TX -> %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19179.96907234192, + "stack_info": null, + "thread": 140628637775552, + "threadName": "Thread-36 (_start)" + }, + { + "args": [ + "comm-client:", + "(45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e" + ], + "asctime": "2025-03-23 16:47:15,282", + "created": 1742744835.2824283, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__rx__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 414, + "message": "comm-client: RX <- (45): 3a 3c 00 00 00 04 00 00 00 11 00 00 00 23 22 6d 73 67 32 5f 64 61 74 61 5f 74 6f 5f 62 65 5f 74 72 61 6e 73 66 65 72 65 64 22 7b 3a 3e", + "module": "__init__", + "msecs": 282.0, + "msg": "%s RX <- %s", + "name": "helpers.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/helpers/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19186.115026474, + "stack_info": null, + "thread": 140628637775552, + "threadName": "Thread-36 (_start)" + }, + { + "args": [ + "prot-client:", + "RX <-", + "service: 17, data_id: 35", + "status: service or data unknown", + "'msg2_data_to_be_transfered'" + ], + "asctime": "2025-03-23 16:47:15,283", + "created": 1742744835.2834697, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__log_msg__", + "levelname": "ERROR", + "levelno": 40, + "lineno": 445, + "message": "prot-client: RX <- service: 17, data_id: 35, status: service or data unknown, data: \"'msg2_data_to_be_transfered'\"", + "module": "__init__", + "msecs": 283.0, + "msg": "%s %s %s, %s, data: \"%s\"", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19187.156438827515, + "stack_info": null, + "thread": 140628637775552, + "threadName": "Thread-36 (_start)" + }, + { + "args": [ + "prot-client:" + ], + "asctime": "2025-03-23 16:47:15,283", + "created": 1742744835.283793, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__buffer_received_data__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 392, + "message": "prot-client: Message data is stored in buffer and is now ready to be retrieved by receive method", + "module": "__init__", + "msecs": 283.0, + "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", + "name": "socket_protocol.all_others", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/socket_protocol/__init__.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19187.479734420776, + "stack_info": null, + "thread": 140628637775552, + "threadName": "Thread-36 (_start)" + } + ], + "msecs": 476.0, + "msg": "Transfering a message server -> client", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/tests/test_communication.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19380.40328025818, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.19292354583740234 + }, + { + "args": [ + "True", + "" + ], + "asctime": "2025-03-23 16:47:15,477", + "created": 1742744835.477803, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Returnvalue of Server send Method is correct (Content True and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Returnvalue of Server send Method", + "True", + "" + ], + "asctime": "2025-03-23 16:47:15,477", + "created": 1742744835.477325, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Returnvalue of Server send Method): True ()", + "module": "test", + "msecs": 477.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19381.011724472046, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Returnvalue of Server send Method", + "=", + "True", + "" + ], + "asctime": "2025-03-23 16:47:15,477", + "created": 1742744835.4775853, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Returnvalue of Server send Method): result = True ()", + "module": "test", + "msecs": 477.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19381.272077560425, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 477.0, + "msg": "Returnvalue of Server send Method is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19381.489753723145, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00021767616271972656 + }, + { + "args": [ + "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:15,478", + "created": 1742744835.4786665, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 184, + "message": "Received message on client side is correct (Content {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} and Type is ).", + "module": "test", + "moduleLogger": [ + { + "args": [ + "Received message on client side", + "{'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:15,478", + "created": 1742744835.478202, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Received message on client side): {'data_id': 35, 'service_id': 17, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", + "module": "test", + "msecs": 478.0, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19381.88886642456, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + }, + { + "args": [ + "Received message on client side", + "=", + "{'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'}", + "" + ], + "asctime": "2025-03-23 16:47:15,478", + "created": 1742744835.478462, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Received message on client side): result = {'service_id': 17, 'data_id': 35, 'status': 4, 'data': 'msg2_data_to_be_transfered'} ()", + "module": "test", + "msecs": 478.0, + "msg": "Expectation (%s): result %s %s (%s)", + "name": "__unittest__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19382.14874267578, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread" + } + ], + "msecs": 478.0, + "msg": "Received message on client side is correct (Content %s and Type is %s).", + "name": "__tLogger__", + "pathname": "/home/dirk/my_repositories/unittest/socket_protocol/unittest/src/unittest/test.py", + "process": 183973, + "processName": "MainProcess", + "relativeCreated": 19382.35330581665, + "stack_info": null, + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.00020456314086914062 + } + ], + "thread": 140631409799232, + "threadName": "MainThread", + "time_consumption": 0.7654411792755127, + "time_finished": "2025-03-23 16:47:15,478", + "time_start": "2025-03-23 16:47:14,713" } }, "testrun_id": "p3", - "time_consumption": 19.340677738189697, + "time_consumption": 19.313421726226807, "uid_list_sorted": [ - "_XzMFcHYZEem_kd-7nxt1sg", - "_7izDUEzYEeuiHtQbLi1mZg", - "_-UtxUEzYEeuiHtQbLi1mZg", - "_AlIUwEzZEeuiHtQbLi1mZg", - "_2pi_8EzZEeuiHtQbLi1mZg", - "_ZJMD8EzaEeuiHtQbLi1mZg", - "_j-npsE0MEeuiHtQbLi1mZg", - "_4w4SsE1DEeuiHtQbLi1mZg", - "_Pn3WgE0NEeuiHtQbLi1mZg", - "_CZeooE0YEeuiHtQbLi1mZg", - "_Lmn-kE0hEeuiHtQbLi1mZg", - "_k-Q4EE0oEeuiHtQbLi1mZg", - "_ZOW3ME0vEeuiHtQbLi1mZg", - "_r9srME0vEeuiHtQbLi1mZg", - "_Tb-78E4LEeupHeIYRnC0qw", - "_YfrfUE4LEeupHeIYRnC0qw", - "_k7opsE4LEeupHeIYRnC0qw", - "_tb5akE4LEeupHeIYRnC0qw", - "_aA508E4gEeupHeIYRnC0qw", - "_elO7wE4gEeupHeIYRnC0qw", - "_gvJ1oE4gEeupHeIYRnC0qw", - "_YhmzIE4lEeupHeIYRnC0qw" + "REQ-0001", + "REQ-0002", + "REQ-0003", + "REQ-0004", + "REQ-0005", + "REQ-0006", + "REQ-0007", + "REQ-0014", + "REQ-0008", + "REQ-0009", + "REQ-0010", + "REQ-0011", + "REQ-0012", + "REQ-0013", + "REQ-0015", + "REQ-0016", + "REQ-0017", + "REQ-0018", + "REQ-0020", + "REQ-0021", + "REQ-0022", + "REQ-0023" ] } ], "unittest_information": { - "Version": "da1e6bd881c6d5dd865ce87d511e702f" + "Version": "e2f899a8597d10f58dc24606f3b9dcfe" } } \ No newline at end of file diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf index bc83673..a62983c 100644 Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ